diff options
author | Dan Gudmundsson <[email protected]> | 2012-03-21 15:41:58 +0100 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2012-03-21 15:41:58 +0100 |
commit | a4cbcb1ecab9d6ac50488fb00c975c521870bfea (patch) | |
tree | 2ff17f20a1358e74d653b6f9b84b7e6ed3f80041 /lib/eldap/src/eldap_sup.erl | |
parent | f562e0fc077e546c2b905a7469999fc8419a0aec (diff) | |
download | otp-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_sup.erl')
-rw-r--r-- | lib/eldap/src/eldap_sup.erl | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/eldap/src/eldap_sup.erl b/lib/eldap/src/eldap_sup.erl deleted file mode 100644 index 1a93bd15b7..0000000000 --- a/lib/eldap/src/eldap_sup.erl +++ /dev/null @@ -1,28 +0,0 @@ - --module(eldap_sup). - --behaviour(supervisor). - -%% API --export([start_link/0]). - -%% Supervisor callbacks --export([init/1]). - -%% Helper macro for declaring children of supervisor --define(CHILD(I, Type), {I, {I, start_link, []}, permanent, 5000, Type, [I]}). - -%% =================================================================== -%% API functions -%% =================================================================== - -start_link() -> - supervisor:start_link({local, ?MODULE}, ?MODULE, []). - -%% =================================================================== -%% Supervisor callbacks -%% =================================================================== - -init([]) -> - {ok, { {one_for_one, 5, 10}, []} }. - |