This is an automated email from the ASF dual-hosted git repository.
elecharny pushed a commit to branch bugfix/DIRMINA-1173
in repository https://gitbox.apache.org/repos/asf/mina.git
The following commit(s) were added to refs/heads/bugfix/DIRMINA-1173 by this
push:
new 6ab8003b5 Give more significant name to a variable
6ab8003b5 is described below
commit 6ab8003b5d02ed82516cc0865fafb1e25c107ac7
Author: emmanuel lecharny <[email protected]>
AuthorDate: Tue Sep 10 11:36:05 2024 +0200
Give more significant name to a variable
---
.../java/org/apache/mina/core/service/IoServiceListenerSupport.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/mina-core/src/main/java/org/apache/mina/core/service/IoServiceListenerSupport.java
b/mina-core/src/main/java/org/apache/mina/core/service/IoServiceListenerSupport.java
index 161b4128d..8f8c3d5b0 100644
---
a/mina-core/src/main/java/org/apache/mina/core/service/IoServiceListenerSupport.java
+++
b/mina-core/src/main/java/org/apache/mina/core/service/IoServiceListenerSupport.java
@@ -252,9 +252,9 @@ public class IoServiceListenerSupport {
// 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);
}