You are viewing a plain text version of this content. The canonical link for it is here.
Posted to crimson-cvs@xml.apache.org by ed...@apache.org on 2001/01/24 01:41:30 UTC

cvs commit: xml-crimson/src/org/apache/crimson/tree AttributeNode.java

edwingo     01/01/23 16:41:30

  Modified:    src/org/apache/crimson/tree AttributeNode.java
  Log:
  Fixed typo in "nmlns" prefix URI
  
  Revision  Changes    Path
  1.3       +3 -3      xml-crimson/src/org/apache/crimson/tree/AttributeNode.java
  
  Index: AttributeNode.java
  ===================================================================
  RCS file: /home/cvs/xml-crimson/src/org/apache/crimson/tree/AttributeNode.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- AttributeNode.java	2001/01/23 20:32:31	1.2
  +++ AttributeNode.java	2001/01/24 00:41:29	1.3
  @@ -1,5 +1,5 @@
   /*
  - * $Id: AttributeNode.java,v 1.2 2001/01/23 20:32:31 edwingo Exp $
  + * $Id: AttributeNode.java,v 1.3 2001/01/24 00:41:29 edwingo Exp $
    *
    * The Apache Software License, Version 1.1
    *
  @@ -100,7 +100,7 @@
    *
    * @author David Brownell
    * @author Rajiv Mordani
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   final   // at least for the moment
   // public
  @@ -117,7 +117,7 @@
       private static final String
           SPEC_XML_URI = "http://www.w3.org/XML/1998/namespace";
       private static final String
  -        SPEC_XMLNS_URI = "http://www.w3.org/XML/2000/xmlns/";
  +        SPEC_XMLNS_URI = "http://www.w3.org/2000/xmlns/";
           
       /** Constructs an attribute node. */
       public AttributeNode(String name, String value,