You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@turbine.apache.org by mp...@apache.org on 2003/11/23 01:42:22 UTC

cvs commit: jakarta-turbine-3/src/java/org/apache/turbine/tool LocalizationTool.java

mpoeschl    2003/11/22 16:42:22

  Modified:    src/java/org/apache/turbine/pipeline
                        DefaultACLCreationValve.java CleanUpValve.java
                        DirectClassicPipeline.java RunModulesValve.java
                        DefaultActionValve.java DetermineActionValve.java
                        DefaultLoginValve.java JspRendererValve.java
                        DefaultSessionValidationValve.java
                        DetermineTargetValve.java
                        DefaultSessionTimeoutValve.java
                        BranchPointValve.java DefaultTargetValve.java
               src/java/org/apache/turbine/exception
                        DefaultExceptionHandler.java
               src/test/org/apache/turbine DynamicURITest.java
               src/test/org/apache/turbine/pipeline SimpleValve.java
                        PipelineTest.java
               src/java/org/apache/turbine/modules/actions
                        TemplateAction.java NullSessionValidator.java
               src/java/org/apache/turbine/tool LocalizationTool.java
  Log:
  cleanup imports
  
  Revision  Changes    Path
  1.6       +2 -3      jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DefaultACLCreationValve.java
  
  Index: DefaultACLCreationValve.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DefaultACLCreationValve.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- DefaultACLCreationValve.java	9 Apr 2002 17:29:34 -0000	1.5
  +++ DefaultACLCreationValve.java	23 Nov 2003 00:42:22 -0000	1.6
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -61,7 +61,6 @@
   import org.apache.turbine.RunData;
   import org.apache.turbine.Resolver;
   import org.apache.turbine.TurbineException;
  -import org.apache.turbine.Valve;
   import org.apache.turbine.ValveContext;
   import org.apache.turbine.modules.actions.AccessController;
   
  
  
  
  1.2       +2 -8      jakarta-turbine-3/src/java/org/apache/turbine/pipeline/CleanUpValve.java
  
  Index: CleanUpValve.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/pipeline/CleanUpValve.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- CleanUpValve.java	2 Aug 2002 22:37:16 -0000	1.1
  +++ CleanUpValve.java	23 Nov 2003 00:42:22 -0000	1.2
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -56,13 +56,9 @@
   
   import java.io.IOException;
   
  -import org.apache.commons.logging.Log;
  -import org.apache.commons.logging.LogFactory;
   import org.apache.fulcrum.security.util.AccessControlList;
  -import org.apache.commons.configuration.Configuration;
   import org.apache.turbine.RunData;
   import org.apache.turbine.TemplateContext;
  -import org.apache.turbine.Turbine;
   import org.apache.turbine.TurbineException;
   import org.apache.turbine.ValveContext;
   import org.apache.turbine.modules.Module;
  @@ -82,8 +78,6 @@
   public class CleanUpValve
       extends AbstractValve
   {
  -    private static final Log log = LogFactory.getLog(CleanUpValve.class);
  -
       /**
        * Creates a new instance.
        */
  
  
  
  1.6       +2 -7      jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DirectClassicPipeline.java
  
  Index: DirectClassicPipeline.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DirectClassicPipeline.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- DirectClassicPipeline.java	18 Jan 2002 03:33:58 -0000	1.5
  +++ DirectClassicPipeline.java	23 Nov 2003 00:42:22 -0000	1.6
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -54,11 +54,6 @@
    * <http://www.apache.org/>.
    */
   
  -import org.apache.turbine.RunData;
  -import org.apache.turbine.Turbine;
  -import org.apache.turbine.TemplateContext;
  -import org.apache.turbine.Valve;
  -import org.apache.turbine.modules.Module;
   
   /**
    * This pipeline overrides the <code>execute()</code> method of
  
  
  
  1.8       +2 -3      jakarta-turbine-3/src/java/org/apache/turbine/pipeline/RunModulesValve.java
  
  Index: RunModulesValve.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/pipeline/RunModulesValve.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- RunModulesValve.java	9 Apr 2002 17:29:35 -0000	1.7
  +++ RunModulesValve.java	23 Nov 2003 00:42:22 -0000	1.8
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -59,7 +59,6 @@
   import org.apache.turbine.Turbine;
   import org.apache.turbine.RunData;
   import org.apache.turbine.TurbineException;
  -import org.apache.turbine.Valve;
   import org.apache.turbine.ValveContext;
   import org.apache.turbine.Resolver;
   import org.apache.turbine.modules.Module;
  
  
  
  1.11      +2 -3      jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DefaultActionValve.java
  
  Index: DefaultActionValve.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DefaultActionValve.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- DefaultActionValve.java	9 Apr 2002 17:29:34 -0000	1.10
  +++ DefaultActionValve.java	23 Nov 2003 00:42:22 -0000	1.11
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -60,7 +60,6 @@
   import org.apache.turbine.TurbineConstants;
   import org.apache.turbine.RunData;
   import org.apache.turbine.TurbineException;
  -import org.apache.turbine.Valve;
   import org.apache.turbine.ValveContext;
   import org.apache.turbine.modules.Module;
   
  
  
  
  1.4       +1 -2      jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DetermineActionValve.java
  
  Index: DetermineActionValve.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DetermineActionValve.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DetermineActionValve.java	9 Apr 2002 17:29:34 -0000	1.3
  +++ DetermineActionValve.java	23 Nov 2003 00:42:22 -0000	1.4
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -58,7 +58,6 @@
   import org.apache.turbine.TurbineConstants;
   import org.apache.turbine.RunData;
   import org.apache.turbine.TurbineException;
  -import org.apache.turbine.Valve;
   import org.apache.turbine.ValveContext;
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
  
  
  
  1.9       +2 -3      jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DefaultLoginValve.java
  
  Index: DefaultLoginValve.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DefaultLoginValve.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- DefaultLoginValve.java	10 May 2002 22:37:46 -0000	1.8
  +++ DefaultLoginValve.java	23 Nov 2003 00:42:22 -0000	1.9
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -65,7 +65,6 @@
   import org.apache.turbine.TurbineConstants;
   import org.apache.turbine.RunData;
   import org.apache.turbine.TurbineException;
  -import org.apache.turbine.Valve;
   import org.apache.turbine.ValveContext;
   import org.apache.turbine.modules.Action;
   
  
  
  
  1.5       +2 -3      jakarta-turbine-3/src/java/org/apache/turbine/pipeline/JspRendererValve.java
  
  Index: JspRendererValve.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/pipeline/JspRendererValve.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- JspRendererValve.java	9 Apr 2002 17:29:35 -0000	1.4
  +++ JspRendererValve.java	23 Nov 2003 00:42:22 -0000	1.5
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -58,7 +58,6 @@
   
   import org.apache.turbine.RunData;
   import org.apache.turbine.TurbineException;
  -import org.apache.turbine.Valve;
   import org.apache.turbine.ValveContext;
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
  
  
  
  1.6       +2 -3      jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DefaultSessionValidationValve.java
  
  Index: DefaultSessionValidationValve.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DefaultSessionValidationValve.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- DefaultSessionValidationValve.java	9 Apr 2002 17:29:34 -0000	1.5
  +++ DefaultSessionValidationValve.java	23 Nov 2003 00:42:22 -0000	1.6
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -61,7 +61,6 @@
   import org.apache.turbine.Resolver;
   import org.apache.turbine.RunData;
   import org.apache.turbine.TurbineException;
  -import org.apache.turbine.Valve;
   import org.apache.turbine.ValveContext;
   import org.apache.turbine.modules.actions.SessionValidator;
   
  
  
  
  1.4       +1 -2      jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DetermineTargetValve.java
  
  Index: DetermineTargetValve.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DetermineTargetValve.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DetermineTargetValve.java	9 Apr 2002 17:29:34 -0000	1.3
  +++ DetermineTargetValve.java	23 Nov 2003 00:42:22 -0000	1.4
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -58,7 +58,6 @@
   import org.apache.turbine.Turbine;
   import org.apache.turbine.RunData;
   import org.apache.turbine.TurbineException;
  -import org.apache.turbine.Valve;
   import org.apache.turbine.ValveContext;
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
  
  
  
  1.8       +2 -3      jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DefaultSessionTimeoutValve.java
  
  Index: DefaultSessionTimeoutValve.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DefaultSessionTimeoutValve.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- DefaultSessionTimeoutValve.java	16 Apr 2002 22:24:02 -0000	1.7
  +++ DefaultSessionTimeoutValve.java	23 Nov 2003 00:42:22 -0000	1.8
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -61,7 +61,6 @@
   import org.apache.turbine.TurbineConstants;
   import org.apache.turbine.RunData;
   import org.apache.turbine.TurbineException;
  -import org.apache.turbine.Valve;
   import org.apache.turbine.ValveContext;
   
   /**
  
  
  
  1.7       +2 -3      jakarta-turbine-3/src/java/org/apache/turbine/pipeline/BranchPointValve.java
  
  Index: BranchPointValve.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/pipeline/BranchPointValve.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- BranchPointValve.java	20 Mar 2002 01:55:28 -0000	1.6
  +++ BranchPointValve.java	23 Nov 2003 00:42:22 -0000	1.7
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -59,7 +59,6 @@
   import org.apache.turbine.Pipeline;
   import org.apache.turbine.RunData;
   import org.apache.turbine.TurbineException;
  -import org.apache.turbine.Valve;
   import org.apache.turbine.ValveContext;
   
   /**
  
  
  
  1.18      +2 -3      jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DefaultTargetValve.java
  
  Index: DefaultTargetValve.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/pipeline/DefaultTargetValve.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- DefaultTargetValve.java	2 Aug 2002 22:37:16 -0000	1.17
  +++ DefaultTargetValve.java	23 Nov 2003 00:42:22 -0000	1.18
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001-2002 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -58,7 +58,6 @@
   
   import org.apache.commons.logging.Log;
   import org.apache.commons.logging.LogFactory;
  -import org.apache.fulcrum.security.util.AccessControlList;
   import org.apache.commons.configuration.Configuration;
   import org.apache.turbine.RunData;
   import org.apache.turbine.TemplateContext;
  
  
  
  1.7       +2 -3      jakarta-turbine-3/src/java/org/apache/turbine/exception/DefaultExceptionHandler.java
  
  Index: DefaultExceptionHandler.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/exception/DefaultExceptionHandler.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- DefaultExceptionHandler.java	8 Jul 2003 23:53:25 -0000	1.6
  +++ DefaultExceptionHandler.java	23 Nov 2003 00:42:22 -0000	1.7
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -60,7 +60,6 @@
   import org.apache.turbine.ValveContext;
   import org.apache.turbine.pipeline.DefaultTargetValve;
   import org.apache.turbine.pipeline.CleanUpValve;
  -import org.apache.commons.lang.StringUtils;
   import org.apache.commons.lang.exception.ExceptionUtils;
   
   /**
  
  
  
  1.2       +2 -5      jakarta-turbine-3/src/test/org/apache/turbine/DynamicURITest.java
  
  Index: DynamicURITest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/test/org/apache/turbine/DynamicURITest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DynamicURITest.java	22 Nov 2002 02:35:10 -0000	1.1
  +++ DynamicURITest.java	23 Nov 2003 00:42:22 -0000	1.2
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -53,9 +53,6 @@
    * information on the Apache Software Foundation, please see
    * <http://www.apache.org/>.
    */
  -
  -import java.util.HashMap;
  -import java.util.Map;
   
   import junit.framework.Test;
   import junit.framework.TestCase;
  
  
  
  1.3       +2 -3      jakarta-turbine-3/src/test/org/apache/turbine/pipeline/SimpleValve.java
  
  Index: SimpleValve.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/test/org/apache/turbine/pipeline/SimpleValve.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SimpleValve.java	24 Jan 2002 03:55:26 -0000	1.2
  +++ SimpleValve.java	23 Nov 2003 00:42:22 -0000	1.3
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -57,7 +57,6 @@
   import java.io.IOException;
   import java.io.Writer;
   
  -import org.apache.turbine.Pipeline;
   import org.apache.turbine.RunData;
   import org.apache.turbine.TurbineException;
   import org.apache.turbine.ValveContext;
  
  
  
  1.4       +2 -6      jakarta-turbine-3/src/test/org/apache/turbine/pipeline/PipelineTest.java
  
  Index: PipelineTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/test/org/apache/turbine/pipeline/PipelineTest.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PipelineTest.java	11 Jan 2002 03:39:55 -0000	1.3
  +++ PipelineTest.java	23 Nov 2003 00:42:22 -0000	1.4
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -61,10 +61,6 @@
   import junit.framework.TestSuite;
   
   import org.apache.turbine.Pipeline;
  -import org.apache.turbine.RunData;
  -import org.apache.turbine.TurbineException;
  -import org.apache.turbine.Valve;
  -import org.apache.turbine.ValveContext;
   import org.apache.turbine.pipeline.TurbinePipeline;
   import org.apache.turbine.services.rundata.DefaultTurbineRunData;
   
  
  
  
  1.4       +2 -4      jakarta-turbine-3/src/java/org/apache/turbine/modules/actions/TemplateAction.java
  
  Index: TemplateAction.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/modules/actions/TemplateAction.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TemplateAction.java	22 Jun 2002 16:49:30 -0000	1.3
  +++ TemplateAction.java	23 Nov 2003 00:42:22 -0000	1.4
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -57,10 +57,8 @@
   import org.apache.turbine.RunData;
   import org.apache.turbine.TemplateContext;
   import java.lang.reflect.Method;
  -import java.lang.reflect.InvocationTargetException;
   import java.util.Enumeration;
   import org.apache.turbine.ParameterParser;
  -import org.apache.turbine.TurbineException;
   import org.apache.turbine.modules.ActionEvent;
   
   /**
  
  
  
  1.4       +2 -3      jakarta-turbine-3/src/java/org/apache/turbine/modules/actions/NullSessionValidator.java
  
  Index: NullSessionValidator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/modules/actions/NullSessionValidator.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- NullSessionValidator.java	22 Jun 2002 22:51:12 -0000	1.3
  +++ NullSessionValidator.java	23 Nov 2003 00:42:22 -0000	1.4
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -54,7 +54,6 @@
    * <http://www.apache.org/>.
    */
   
  -import org.apache.turbine.Turbine;
   import org.apache.turbine.RunData;
   
   /**
  
  
  
  1.2       +1 -3      jakarta-turbine-3/src/java/org/apache/turbine/tool/LocalizationTool.java
  
  Index: LocalizationTool.java
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-3/src/java/org/apache/turbine/tool/LocalizationTool.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- LocalizationTool.java	1 Jun 2002 22:05:28 -0000	1.1
  +++ LocalizationTool.java	23 Nov 2003 00:42:22 -0000	1.2
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -54,11 +54,9 @@
    * <http://www.apache.org/>.
    */
   
  -import java.util.ArrayList;
   import java.util.List;
   import java.util.Locale;
   import java.util.MissingResourceException;
  -import java.util.ResourceBundle;
   
   import org.apache.fulcrum.localization.Localization;
   
  
  
  

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