You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2003/08/09 21:04:55 UTC

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/coyote/tomcat5 CoyoteRequest.java

remm        2003/08/09 12:04:55

  Modified:    catalina/src/share/org/apache/coyote/tomcat5
                        CoyoteRequest.java
  Log:
  - Split the applicationListeners array in two, for performance reasons.
  
  Revision  Changes    Path
  1.12      +6 -6      jakarta-tomcat-catalina/catalina/src/share/org/apache/coyote/tomcat5/CoyoteRequest.java
  
  Index: CoyoteRequest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/coyote/tomcat5/CoyoteRequest.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- CoyoteRequest.java	10 Jul 2003 23:30:49 -0000	1.11
  +++ CoyoteRequest.java	9 Aug 2003 19:04:55 -0000	1.12
  @@ -1369,7 +1369,7 @@
           }
   
           // Notify interested application event listeners
  -        Object listeners[] = context.getApplicationListeners();
  +        Object listeners[] = context.getApplicationEventListeners();
           if ((listeners == null) || (listeners.length == 0))
               return;
           ServletRequestAttributeEvent event =
  @@ -1434,7 +1434,7 @@
           }
   
           // Notify interested application event listeners
  -        Object listeners[] = context.getApplicationListeners();
  +        Object listeners[] = context.getApplicationEventListeners();
           if ((listeners == null) || (listeners.length == 0))
               return;
           ServletRequestAttributeEvent event = null;