summaryrefslogtreecommitdiffstats
path: root/bundle/Vundle.vim/test/files
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2017-01-30 15:55:41 +0100
committerAhmed Abdelhalim <[email protected]>2017-01-30 15:55:41 +0100
commitb0c02b2464fd0720ca5d3f261eb09122c7e8f0aa (patch)
treef3d95d66272de2fa6d5fe4b1a837f299efb8f8d2 /bundle/Vundle.vim/test/files
parent31a2eb92b3c54b70db3ce35e5b5a60539b221e26 (diff)
FIX: remove vundle files
Diffstat (limited to 'bundle/Vundle.vim/test/files')
-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]
- }
- ]
- }}.