Author: darran.lofthouse(a)jboss.com
Date: 2009-07-17 10:56:17 -0400 (Fri, 17 Jul 2009)
New Revision: 10337
Modified:
stack/native/branches/dlofthouse/JBWS-2704/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPElementImpl.java
Log:
Remove the System.out.println calls :-)
Modified:
stack/native/branches/dlofthouse/JBWS-2704/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPElementImpl.java
===================================================================
---
stack/native/branches/dlofthouse/JBWS-2704/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPElementImpl.java 2009-07-17
14:55:22 UTC (rev 10336)
+++
stack/native/branches/dlofthouse/JBWS-2704/modules/core/src/main/java/org/jboss/ws/core/soap/SOAPElementImpl.java 2009-07-17
14:56:17 UTC (rev 10337)
@@ -769,14 +769,11 @@
List filtered = new LinkedList();
- System.out.println(namespaceURI + ", " + localName);
- System.out.println("filtering " + nodes.size() + " nodes");
for (Element current : nodes)
{
boolean namespaceMatch = false;
boolean localNameMatch = false;
- System.out.println("Checking " + current.getNamespaceURI() + ",
" + current.getLocalName());
if ("*".equals(namespaceURI) || ((namespaceURI != null) &&
namespaceURI.equals(current.getNamespaceURI())))
{
namespaceMatch = true;
@@ -789,7 +786,6 @@
if (namespaceMatch == true && localNameMatch == true)
{
- System.out.println("Adding " + current.getNamespaceURI() + ",
" + current.getLocalName());
filtered.add(current);
}
}