aboutsummaryrefslogtreecommitdiffstats
path: root/lib/eldap/src/eldap_app.erl
diff options
context:
space:
mode:
authorDan Gudmundsson <[email protected]>2012-03-21 15:41:58 +0100
committerDan Gudmundsson <[email protected]>2012-03-21 15:41:58 +0100
commita4cbcb1ecab9d6ac50488fb00c975c521870bfea (patch)
tree2ff17f20a1358e74d653b6f9b84b7e6ed3f80041 /lib/eldap/src/eldap_app.erl
parentf562e0fc077e546c2b905a7469999fc8419a0aec (diff)
downloadotp-a4cbcb1ecab9d6ac50488fb00c975c521870bfea.tar.gz
otp-a4cbcb1ecab9d6ac50488fb00c975c521870bfea.tar.bz2
otp-a4cbcb1ecab9d6ac50488fb00c975c521870bfea.zip
[eldap] Remove broken functionality
eldap_fsm is broken so we have decided not support that at the moment. Which makes eldap_sup and eldap_app unused and thus they are removed to.
Diffstat (limited to 'lib/eldap/src/eldap_app.erl')
-rw-r--r--lib/eldap/src/eldap_app.erl16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/eldap/src/eldap_app.erl b/lib/eldap/src/eldap_app.erl
deleted file mode 100644
index fa253664ea..0000000000
--- a/lib/eldap/src/eldap_app.erl
+++ /dev/null
@@ -1,16 +0,0 @@
--module(eldap_app).
-
--behaviour(application).
-
-%% Application callbacks
--export([start/2, stop/1]).
-
-%% ===================================================================
-%% Application callbacks
-%% ===================================================================
-
-start(_StartType, _StartArgs) ->
- eldap_sup:start_link().
-
-stop(_State) ->
- ok.