You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by am...@apache.org on 2003/05/15 22:49:06 UTC

cvs commit: jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core StandardContext.java StandardWrapper.java

amyroh      2003/05/15 13:49:06

  Modified:    catalina/src/share/org/apache/catalina/core
                        StandardContext.java StandardWrapper.java
  Log:
  Fix case type.  I commited the right one to another workspace and was in hurry to port.  ;-)
  
  Revision  Changes    Path
  1.52      +4 -4      jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core/StandardContext.java
  
  Index: StandardContext.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core/StandardContext.java,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -r1.51 -r1.52
  --- StandardContext.java	15 May 2003 08:31:57 -0000	1.51
  +++ StandardContext.java	15 May 2003 20:49:05 -0000	1.52
  @@ -5144,7 +5144,7 @@
       /** Support for "stateManageable" JSR77 
        * 
        */
  -    public boolean IsStateManageable() {
  +    public boolean isStateManageable() {
           return true;
       }
       
  @@ -5197,11 +5197,11 @@
           return startupTime;
       }
       
  -    public boolean IsEventProvider() {
  +    public boolean isEventProvider() {
           return false;
       }
       
  -    public boolean IsStatisticsProvider() {
  +    public boolean isStatisticsProvider() {
           return false;
       }
       
  
  
  
  1.27      +7 -7      jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core/StandardWrapper.java
  
  Index: StandardWrapper.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-catalina/catalina/src/share/org/apache/catalina/core/StandardWrapper.java,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- StandardWrapper.java	15 May 2003 08:31:57 -0000	1.26
  +++ StandardWrapper.java	15 May 2003 20:49:05 -0000	1.27
  @@ -1583,15 +1583,15 @@
       // ------------------------------------------------------------- Attributes
           
           
  -    public boolean IsEventProvider() {
  +    public boolean isEventProvider() {
           return false;
       }
       
  -    public boolean IsStateManageable() {
  +    public boolean isStateManageable() {
           return false;
       }
       
  -    public boolean IsStatisticsProvider() {
  +    public boolean isStatisticsProvider() {
           return false;
       }
           
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org