diff options
| author | Loïc Hoguin <essen@ninenines.eu> | 2016-10-06 17:17:54 +0200 |
|---|---|---|
| committer | Loïc Hoguin <essen@ninenines.eu> | 2016-10-06 17:17:54 +0200 |
| commit | d827dbad50c4e7c4c4b93545ac523137412b7f14 (patch) | |
| tree | 781ab4db90c175b8be38e5897551213dd3d8cfd1 | |
| parent | 61250711fe23df9a4b3980fdc2f133eef7aa805e (diff) | |
| download | rabbitmq-server-git-d827dbad50c4e7c4c4b93545ac523137412b7f14.tar.gz | |
Remove a pointless comment
| -rw-r--r-- | src/rabbit.erl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/rabbit.erl b/src/rabbit.erl index b09ad464b5..75425e1a95 100644 --- a/src/rabbit.erl +++ b/src/rabbit.erl @@ -518,9 +518,7 @@ decrypt_app(_, [], _) -> decrypt_app(App, [{Key, Value}|Tail], Algo) -> case decrypt(Value, Algo) of Value -> ok; - NewValue -> -% io:format("~p ~p ~p~n", [Key, Value, NewValue]), - application:set_env(App, Key, NewValue) + NewValue -> application:set_env(App, Key, NewValue) end, decrypt_app(App, Tail, Algo). |
