From 21f47438614a0d50caf20801c4440d54d12c3f20 Mon Sep 17 00:00:00 2001 From: Tristan Sloughter Date: Sat, 30 Aug 2014 22:14:48 -0500 Subject: remove more code that can be brought back later if needed --- inttest/erlc/extra-src/foo_sup.erl | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 inttest/erlc/extra-src/foo_sup.erl (limited to 'inttest/erlc/extra-src') diff --git a/inttest/erlc/extra-src/foo_sup.erl b/inttest/erlc/extra-src/foo_sup.erl deleted file mode 100644 index c68194e..0000000 --- a/inttest/erlc/extra-src/foo_sup.erl +++ /dev/null @@ -1,15 +0,0 @@ -%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*- -%% ex: ts=4 sw=4 ft=erlang et --module(foo_sup). - --behavior(supervisor). - --export([start_link/0, - init/1]). - -start_link() -> - supervisor:start_link({local, ?MODULE}, ?MODULE, []). - -init(_Args) -> - FooChild = {foo,{foo, start_link, []}, permanent, 5000, worker, [foo]}, - {ok,{{one_for_all,1,1}, [FooChild]}}. -- cgit v1.1