diff options
-rw-r--r-- | src/mysqlerl_sup.erl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mysqlerl_sup.erl b/src/mysqlerl_sup.erl index e8c1485..1ebfbf2 100644 --- a/src/mysqlerl_sup.erl +++ b/src/mysqlerl_sup.erl @@ -13,5 +13,4 @@ init([]) -> {mysqlerl_connection_sup, start_link, []}, permanent, infinity, supervisor, [mysqlerl_connection_sup]}, - {ok, {{one_for_one, 10, 5}, - [ConnectionSup]}}. + {ok, {{one_for_one, 10, 5}, [ConnectionSup]}}. |