summaryrefslogtreecommitdiff
path: root/src/rabbit.erl
diff options
context:
space:
mode:
authorMatthew Sackman <matthew@rabbitmq.com>2011-06-28 15:42:24 +0100
committerMatthew Sackman <matthew@rabbitmq.com>2011-06-28 15:42:24 +0100
commit390c5ebf7340992085ebdc12289eb696c9a52af8 (patch)
treed92d5b555cc28310f23c111d0925b8957767ef56 /src/rabbit.erl
parentf5532d9d6f264f2247e72e9f821a37f2fa20133b (diff)
downloadrabbitmq-server-git-390c5ebf7340992085ebdc12289eb696c9a52af8.tar.gz
cosmetic
Diffstat (limited to 'src/rabbit.erl')
-rw-r--r--src/rabbit.erl6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl
index 16b8ac197e..c8a60bd8a4 100644
--- a/src/rabbit.erl
+++ b/src/rabbit.erl
@@ -402,11 +402,9 @@ application_load_order() ->
true = digraph:delete(G),
Result.
-application_graph_vertex(App, _Deps) ->
- [{App, App}].
+application_graph_vertex(App, _Deps) -> [{App, App}].
-application_graph_edge(App, Deps) ->
- [{Dep, App} || Dep <- Deps].
+application_graph_edge(App, Deps) -> [{Dep, App} || Dep <- Deps].
%%---------------------------------------------------------------------------