Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dfuch committed Jun 12, 2024
1 parent b1353b3 commit 30291a7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -216,15 +216,15 @@ private void serverLoopback() {
is.close();
os.close();
serverSock.close();
System.out.println("serverLooback exiting normally");
System.out.println("serverLoopback exiting normally");
return;
}
os.write(bb, 0, n);
os.flush();
loopCount.addAndGet(n);
}
} catch (Throwable e) {
System.out.println("serverLooback got exception: " + e);
System.out.println("serverLoopback got exception: " + e);
e.printStackTrace();
} finally {
System.out.println("serverLoopback exiting at count: " + loopCount.get());
Expand Down

0 comments on commit 30291a7

Please sign in to comment.