dion        2004/09/05 07:25:51

  Modified:    jelly/src/java/org/apache/commons/jelly/parser
                        XMLParser.java
  Log:
  Make namespaces a Map, not a HashMap
  
  Revision  Changes    Path
  1.54      +2 -2      
jakarta-commons/jelly/src/java/org/apache/commons/jelly/parser/XMLParser.java
  
  Index: XMLParser.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons/jelly/src/java/org/apache/commons/jelly/parser/XMLParser.java,v
  retrieving revision 1.53
  retrieving revision 1.54
  diff -u -r1.53 -r1.54
  --- XMLParser.java    2 Sep 2004 07:27:37 -0000       1.53
  +++ XMLParser.java    5 Sep 2004 14:25:51 -0000       1.54
  @@ -147,7 +147,7 @@
        * is required because documents can declare nested uses of the same
        * prefix for different Namespace URIs).
        */
  -    protected HashMap namespaces = new HashMap();
  +    protected Map namespaces = new HashMap();
   
       /** The Map of the namespace prefix -> URIs defined for the current element 
*/
       private Map elementNamespaces;
  
  
  

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

Reply via email to