diff options
author | Ingela Anderton Andin <[email protected]> | 2012-01-31 16:12:30 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2012-02-10 15:34:19 +0100 |
commit | 8d20de278b3ef69ea470bfb35e5999750214e3a1 (patch) | |
tree | aeaee1cc7c7c3f882934a608e6c2ad903d09c876 /lib/ssh/src/ssh_bits.erl | |
parent | 2916e7f2aa523411717c3ed4e275ab96cb03b6ee (diff) | |
download | otp-8d20de278b3ef69ea470bfb35e5999750214e3a1.tar.gz otp-8d20de278b3ef69ea470bfb35e5999750214e3a1.tar.bz2 otp-8d20de278b3ef69ea470bfb35e5999750214e3a1.zip |
Removed no longer needed code
Diffstat (limited to 'lib/ssh/src/ssh_bits.erl')
-rw-r--r-- | lib/ssh/src/ssh_bits.erl | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/ssh/src/ssh_bits.erl b/lib/ssh/src/ssh_bits.erl index 3f0a06575c..5841f06d70 100644 --- a/lib/ssh/src/ssh_bits.erl +++ b/lib/ssh/src/ssh_bits.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2005-2011. All Rights Reserved. +%% Copyright Ericsson AB 2005-2012. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -105,16 +105,12 @@ bignum(X) -> install_messages(Codes) -> foreach(fun({Name, Code, Ts}) -> - %% ?dbg(true, "install msg: ~s = ~w ~w~n", -%% [Name,Code,Ts]), put({msg_name,Code}, {Name,Ts}), put({msg_code,Name}, {Code,Ts}) end, Codes). uninstall_messages(Codes) -> foreach(fun({Name, Code, _Ts}) -> - %% ?dbg(true, "uninstall msg: ~s = ~w ~w~n", -%% [Name,Code,_Ts]), erase({msg_name,Code}), erase({msg_code,Name}) end, Codes). |