aboutsummaryrefslogtreecommitdiff
path: root/bundle/Vundle.vim/test/files/test.erl
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2015-08-17 11:57:49 -0600
committerCody Hiar <codyfh@gmail.com>2015-08-17 11:57:49 -0600
commite398816da47aa706b2bf05b8a663a637d5b6f39c (patch)
tree6231dd8617d79e4dc2192ace65e14ba8fb66ca1e /bundle/Vundle.vim/test/files/test.erl
parent547be64dd10d56c1a0979756eaf0b2aaaf15f6ec (diff)
Changing to different plugin system
Diffstat (limited to 'bundle/Vundle.vim/test/files/test.erl')
-rw-r--r--bundle/Vundle.vim/test/files/test.erl20
1 files changed, 0 insertions, 20 deletions
diff --git a/bundle/Vundle.vim/test/files/test.erl b/bundle/Vundle.vim/test/files/test.erl
deleted file mode 100644
index 1672953..0000000
--- a/bundle/Vundle.vim/test/files/test.erl
+++ /dev/null
@@ -1,20 +0,0 @@
--module(mmc_logmon_sup).
--behaviour(supervisor).
--export([init/1]).
-
-init(_) ->
- {ok, {
- {one_for_one, 5, 1},
- [
- {listener,
- {aaa, start_link, []},
- permanent, 100, worker,
- [aaa]
- },
- {server,
- {bbb, start_link, []},
- permanent, 100, worker,
- [bbb]
- }
- ]
- }}.