diff options
author | Henrik Nord <[email protected]> | 2015-05-20 09:53:20 +0200 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2015-05-20 09:53:20 +0200 |
commit | 7cedd7e123d85365782500251ab87125002ebd17 (patch) | |
tree | a7ba31776fcb4bbe3a48d7a0fe75e10465cb1f2f /lib/kernel | |
parent | 1de6eedabd5b83d8996b5ad1a87c60a014b26c5b (diff) | |
parent | 96df4f39cdcd881303ac56bc96b84ae5f6f58c8d (diff) | |
download | otp-7cedd7e123d85365782500251ab87125002ebd17.tar.gz otp-7cedd7e123d85365782500251ab87125002ebd17.tar.bz2 otp-7cedd7e123d85365782500251ab87125002ebd17.zip |
Merge branch 'MSch/patch-1'
* MSch/patch-1:
Remove erlang:display/1 calls
Diffstat (limited to 'lib/kernel')
-rw-r--r-- | lib/kernel/src/inet_tcp_dist.erl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/kernel/src/inet_tcp_dist.erl b/lib/kernel/src/inet_tcp_dist.erl index 835dcf2705..fb60a14afb 100644 --- a/lib/kernel/src/inet_tcp_dist.erl +++ b/lib/kernel/src/inet_tcp_dist.erl @@ -112,7 +112,6 @@ listen_options(Opts0) -> end, case application:get_env(kernel, inet_dist_listen_options) of {ok,ListenOpts} -> - erlang:display({inet_dist_listen_options, ListenOpts}), ListenOpts ++ Opts1; _ -> Opts1 @@ -340,7 +339,6 @@ do_setup(Kernel, Node, Type, MyNode, LongOrShortNames,SetupTime) -> connect_options(Opts) -> case application:get_env(kernel, inet_dist_connect_options) of {ok,ConnectOpts} -> - erlang:display({inet_dist_listen_options, ConnectOpts}), ConnectOpts ++ Opts; _ -> Opts |