cvs commit: xml-soap/java/samples/messaging POProcessor.java

[email protected]
Newsgroups gmane.text.xml.soap.devel
Message-ID <[email protected]>
snichol     2003/06/12 10:38:39

  Modified:    java/samples/messaging POProcessor.java
  Log:
  Remove System.out.println!
  
  Revision  Changes    Path
  1.5       +0 -4      xml-soap/java/samples/messaging/POProcessor.java
  
  Index: POProcessor.java
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/samples/messaging/POProcessor.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- POProcessor.java	12 Jun 2003 17:37:18 -0000	1.4
  +++ POProcessor.java	12 Jun 2003 17:38:39 -0000	1.5
  @@ -87,14 +87,11 @@
         Element e = (Element) entries.elementAt(i);
         String nodeName = e.getNodeName();
         if (nodeName.equals("purchaseOrder")) {
  -System.out.println("Have purchaseOrder");
           NodeList children = e.getChildNodes();
           for (int j = 0; j < children.getLength(); j++) {
             Node n = children.item(j);
  -System.out.println("Node " + j + " type " + n.getNodeType());
             switch (n.getNodeType()) {
               case Node.ELEMENT_NODE:
  -System.out.println("Element " + n.getNodeName());
                 if (n.getNodeName().equals("shipTo"))
                   shipTo = n;
                 else if (n.getNodeName().equals("billTo"))
  @@ -105,7 +102,6 @@
                   throw new Exception("Unknown element name: " + n.getNodeName());
                 break;
               case Node.ATTRIBUTE_NODE:
  -System.out.println("Attribute " + n.getNodeName());
                 if (n.getNodeName().equals("orderDate"))
                   orderDate = ((Attr) n).getValue();
                 break;
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.