about summary refs log tree commit diff
path: root/src/stomp.erl_sup.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/stomp.erl_sup.erl')
-rw-r--r--src/stomp.erl_sup.erl12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/stomp.erl_sup.erl b/src/stomp.erl_sup.erl
deleted file mode 100644
index 9c41cba1f202..000000000000
--- a/src/stomp.erl_sup.erl
+++ /dev/null
@@ -1,12 +0,0 @@
--module(stomp.erl_sup).
--behaviour(supervisor).
-
--export([start_link/0]).
--export([init/1]).
-
-start_link() ->
-    supervisor:start_link({local, ?MODULE}, ?MODULE, []).
-
-init([]) ->
-    Procs = [],
-    {ok, {{one_for_one, 1, 5}, Procs}}.