You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by di...@apache.org on 2003/05/14 21:25:10 UTC

cvs commit: xml-axis/java/src/org/apache/axis/utils XMLUtils.java

dims        2003/05/14 12:25:10

  Modified:    java/src/org/apache/axis/utils XMLUtils.java
  Log:
  Reviewing the code.....This is the ONLY method in this class that was non-static.
  
  Revision  Changes    Path
  1.80      +1 -1      xml-axis/java/src/org/apache/axis/utils/XMLUtils.java
  
  Index: XMLUtils.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/utils/XMLUtils.java,v
  retrieving revision 1.79
  retrieving revision 1.80
  diff -u -r1.79 -r1.80
  --- XMLUtils.java	22 Apr 2003 19:36:05 -0000	1.79
  +++ XMLUtils.java	14 May 2003 19:25:10 -0000	1.80
  @@ -542,7 +542,7 @@
        * Return a string for a particular QName, mapping a new prefix
        * if necessary.
        */
  -    public String getStringForQName(QName qname, Element e)
  +    public static String getStringForQName(QName qname, Element e)
       {
           String uri = qname.getNamespaceURI();
           String prefix = getPrefix(uri, e);