dwinterfeldt    01/07/18 19:11:53

  Modified:    src/share/org/apache/struts/action Action.java
  Log:
  The key for the message resource and an ActionMessage were the same.  Even though 
they were in different scopes and shouldn't cause a problem I changed the one for 
ActionMessage to something unique.
  
  Revision  Changes    Path
  1.24      +5 -5      jakarta-struts/src/share/org/apache/struts/action/Action.java
  
  Index: Action.java
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/action/Action.java,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- Action.java       2001/07/12 05:12:01     1.23
  +++ Action.java       2001/07/19 02:11:52     1.24
  @@ -1,7 +1,7 @@
   /*
  - * $Header: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/action/Action.java,v 1.23 
2001/07/12 05:12:01 dwinterfeldt Exp $
  - * $Revision: 1.23 $
  - * $Date: 2001/07/12 05:12:01 $
  + * $Header: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/action/Action.java,v 1.24 
2001/07/19 02:11:52 dwinterfeldt Exp $
  + * $Revision: 1.24 $
  + * $Date: 2001/07/19 02:11:52 $
    *
    * ====================================================================
    *
  @@ -108,7 +108,7 @@
    * by this Action.
    *
    * @author Craig R. McClanahan
  - * @version $Revision: 1.23 $ $Date: 2001/07/12 05:12:01 $
  + * @version $Revision: 1.24 $ $Date: 2001/07/19 02:11:52 $
    */
   
   public class Action {
  @@ -141,7 +141,7 @@
        * are using the corresponding custom tag library elements.
        */
       public static final String MESSAGE_KEY =
  -      "org.apache.struts.action.MESSAGE";
  +      "org.apache.struts.action.ACTION_MESSAGE";
   
       /**
        * The request attributes key under which Struts custom tags might store a
  
  
  

Reply via email to