summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2012-08-07 19:42:50 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2012-08-07 19:42:50 +0100
commit73dfbe12fc532e459921cc1ab523cf0f93eb835e (patch)
tree2064a2f6042004e76be508f8fe64d0ae77ecc68a
parentbe8234ba032a93b8b1b8da69ad1eaf559d5f12fa (diff)
downloadrabbitmq-server-73dfbe12fc532e459921cc1ab523cf0f93eb835e.tar.gz
remove cruft
-rw-r--r--src/rabbit_plugins.erl4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/rabbit_plugins.erl b/src/rabbit_plugins.erl
index 7cf6eea9..5cf60d6c 100644
--- a/src/rabbit_plugins.erl
+++ b/src/rabbit_plugins.erl
@@ -47,9 +47,7 @@
%%----------------------------------------------------------------------------
-%%
%% @doc Prepares the file system and installs all enabled plugins.
-%%
setup() ->
{ok, PluginDir} = application:get_env(rabbit, plugins_dir),
{ok, ExpandDir} = application:get_env(rabbit, plugins_expand_dir),
@@ -98,11 +96,9 @@ read_enabled(PluginsFile) ->
PluginsFile, Reason}})
end.
-%%
%% @doc Calculate the dependency graph from <i>Sources</i>.
%% When Reverse =:= true the bottom/leaf level applications are returned in
%% the resulting list, otherwise they're skipped.
-%%
dependencies(Reverse, Sources, AllPlugins) ->
{ok, G} = rabbit_misc:build_acyclic_graph(
fun (App, _Deps) -> [{App, App}] end,