Skip to content

Commit b5afbd2

Browse files
committed
removed unnecessary label
1 parent cafb4bb commit b5afbd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/source/ClientHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public void run() {
1919
this.initClient();
2020
String input;
2121
try {
22-
listening: while (this.isConnected() && (input = reader.readLine()) != null) {
22+
while (this.isConnected() && (input = reader.readLine()) != null) {
2323
if ("exit".equals(input)) {
2424
break;
2525
} else {

0 commit comments

Comments
 (0)