cmlenz      2003/07/24 14:46:38

  Modified:    
integration/eclipse/org.apache.cactus.eclipse.webapp/src/java/org/apache/cactus/eclipse/webapp/internal
                        WarBuilder.java
               
integration/eclipse/org.apache.cactus.eclipse.webapp/src/java/org/apache/cactus/eclipse/webapp/internal/ui
                        WebAppConfigurationBlock.java
  Log:
  Away with the redundant final modifiers
  
  Revision  Changes    Path
  1.3       +3 -3      
jakarta-cactus/integration/eclipse/org.apache.cactus.eclipse.webapp/src/java/org/apache/cactus/eclipse/webapp/internal/WarBuilder.java
  
  Index: WarBuilder.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-cactus/integration/eclipse/org.apache.cactus.eclipse.webapp/src/java/org/apache/cactus/eclipse/webapp/internal/WarBuilder.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- WarBuilder.java   11 Jun 2003 16:05:43 -0000      1.2
  +++ WarBuilder.java   24 Jul 2003 21:46:38 -0000      1.3
  @@ -204,7 +204,7 @@
        * @throws JavaModelException if we fail to get the project relative 
        *         output location
        */
  -    private static final File getAbsoluteOutputLocation(
  +    private static File getAbsoluteOutputLocation(
           final IJavaProject theJavaProject) throws JavaModelException
       {
           IPath projectPath = theJavaProject.getProject().getLocation();
  @@ -305,7 +305,7 @@
        * @param theJarEntries the jars to build ZipFileSets from
        * @return an array of ZipFileSet corresponding to the given jars
        */
  -    private static final ZipFileSet[] getZipFileSets(
  +    private static ZipFileSet[] getZipFileSets(
           final IClasspathEntry[] theJarEntries)
       {
           Vector result = new Vector();
  
  
  
  1.3       +3 -3      
jakarta-cactus/integration/eclipse/org.apache.cactus.eclipse.webapp/src/java/org/apache/cactus/eclipse/webapp/internal/ui/WebAppConfigurationBlock.java
  
  Index: WebAppConfigurationBlock.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-cactus/integration/eclipse/org.apache.cactus.eclipse.webapp/src/java/org/apache/cactus/eclipse/webapp/internal/ui/WebAppConfigurationBlock.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- WebAppConfigurationBlock.java     11 Jun 2003 16:05:44 -0000      1.2
  +++ WebAppConfigurationBlock.java     24 Jul 2003 21:46:38 -0000      1.3
  @@ -200,7 +200,7 @@
        * Possible use : validation of an entry in a dialog field.
        * @param theField field that triggered an event.
        */
  -    private final void webappDialogFieldChanged(final DialogField theField)
  +    private void webappDialogFieldChanged(final DialogField theField)
       {
           // TODO: validate entries in dialogs
           // Do nothing.
  @@ -210,7 +210,7 @@
        * Adapter that dispatches events from StringButtonDialog fields.
        * @param theField field that triggered an event.
        */
  -    private final void webappChangeControlPressed(final DialogField theField)
  +    private void webappChangeControlPressed(final DialogField theField)
       {
               if (theField == outputField)
               {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to