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 gd...@apache.org on 2001/07/09 19:02:06 UTC

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

gdaniels    01/07/09 10:02:05

  Modified:    java/src/org/apache/axis/utils NSStack.java
  Log:
  Remove extraneous debugging println.
  
  Thanks to Carl Woolf (cwoolf@macromedia.com) for noticing this 'un.
  
  Revision  Changes    Path
  1.5       +3 -2      xml-axis/java/src/org/apache/axis/utils/NSStack.java
  
  Index: NSStack.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/utils/NSStack.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- NSStack.java	2001/06/12 12:32:56	1.4
  +++ NSStack.java	2001/07/09 17:01:59	1.5
  @@ -181,8 +181,9 @@
               return parent.getNamespaceURI(prefix);
   
           dump();
  -        System.out.println("didn't find prefix '" + prefix + "'");
  -        new Exception().printStackTrace();
  +        if (DEBUG_LOG) {
  +          System.err.println("didn't find prefix '" + prefix + "'");
  +        }
           return null;
       }