Skip to content

Commit

Permalink
Give more significant name to a variable
Browse files Browse the repository at this point in the history
  • Loading branch information
elecharny committed Sep 10, 2024
1 parent 0daeb7b commit 6ab8003
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,9 @@ public void fireSessionDestroyed(IoSession session) {

// Fire listener events.
try {
for (IoServiceListener l : listeners) {
for (IoServiceListener listener : listeners) {
try {
l.sessionDestroyed(session);
listener.sessionDestroyed(session);
} catch (Exception e) {
ExceptionMonitor.getInstance().exceptionCaught(e);
}
Expand Down

0 comments on commit 6ab8003

Please sign in to comment.