You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cactus-dev@jakarta.apache.org by vm...@apache.org on 2003/02/24 11:27:22 UTC

cvs commit: jakarta-cactus/framework/src/java/share/org/apache/cactus HttpServiceDefinition.java

vmassol     2003/02/24 02:27:21

  Modified:    framework/src/java/share/org/apache/cactus
                        HttpServiceDefinition.java
  Log:
  Removed unneded 'Static' keyword (thanks to Checkstyle)
  
  Revision  Changes    Path
  1.8       +6 -6      jakarta-cactus/framework/src/java/share/org/apache/cactus/HttpServiceDefinition.java
  
  Index: HttpServiceDefinition.java
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/framework/src/java/share/org/apache/cactus/HttpServiceDefinition.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- HttpServiceDefinition.java	23 Feb 2003 18:05:19 -0000	1.7
  +++ HttpServiceDefinition.java	24 Feb 2003 10:27:21 -0000	1.8
  @@ -78,26 +78,26 @@
        * Test class to call. The name is voluntarily long so that it will not
        * clash with a user-defined parameter.
        */
  -    static String CLASS_NAME_PARAM = "Cactus_TestClass";
  +    String CLASS_NAME_PARAM = "Cactus_TestClass";
   
       /**
        * Name of the parameter in the HTTP request that represents an optional
        * Test being wrapped by the class represented by CLASS_NAME_PARAM.
        */
  -    static String WRAPPED_CLASS_NAME_PARAM = "Cactus_WrappedTestClass";
  +    String WRAPPED_CLASS_NAME_PARAM = "Cactus_WrappedTestClass";
   
       /**
        * Name of the parameter in the HTTP request that represents the name of the
        * Test method to call. The name is voluntarily long so that it will not
        * clash with a user-defined parameter.
        */
  -    static String METHOD_NAME_PARAM = "Cactus_TestMethod";
  +    String METHOD_NAME_PARAM = "Cactus_TestMethod";
   
       /**
        * Name of the parameter in the HTTP request that specify if a session
        * should be automatically created for the user or not.
        */
  -    static String AUTOSESSION_NAME_PARAM = "Cactus_AutomaticSession";
  +    String AUTOSESSION_NAME_PARAM = "Cactus_AutomaticSession";
   
       /**
        * Name of the parameter in the HTTP request that specify the service asked
  @@ -107,5 +107,5 @@
        *
        * @see ServiceEnumeration
        */
  -    static String SERVICE_NAME_PARAM = "Cactus_Service";
  +    String SERVICE_NAME_PARAM = "Cactus_Service";
   }
  
  
  

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