aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/java/de/mud/telnet/TelnetProtocolHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/java/de/mud/telnet/TelnetProtocolHandler.java')
-rw-r--r--app/src/main/java/de/mud/telnet/TelnetProtocolHandler.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/java/de/mud/telnet/TelnetProtocolHandler.java b/app/src/main/java/de/mud/telnet/TelnetProtocolHandler.java
index 74f08bb..a2a5d71 100644
--- a/app/src/main/java/de/mud/telnet/TelnetProtocolHandler.java
+++ b/app/src/main/java/de/mud/telnet/TelnetProtocolHandler.java
@@ -382,7 +382,7 @@ public abstract class TelnetProtocolHandler {
if (b>=128)
b=(byte)(b-256);
if(debug > 2) {
- Byte B = new Byte(b);
+ Byte B = Byte.valueOf(b);
System.err.print("byte: " + B.intValue()+ " ");
}
switch (neg_state) {