You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@labs.apache.org by th...@apache.org on 2008/09/04 01:04:29 UTC

svn commit: r691817 - /labs/droids/trunk/src/core/java/org/apache/droids/parse/html/HtmlParser.java

Author: thorsten
Date: Wed Sep  3 16:04:29 2008
New Revision: 691817

URL: http://svn.apache.org/viewvc?rev=691817&view=rev
Log:
Removing sysout debugs

Modified:
    labs/droids/trunk/src/core/java/org/apache/droids/parse/html/HtmlParser.java

Modified: labs/droids/trunk/src/core/java/org/apache/droids/parse/html/HtmlParser.java
URL: http://svn.apache.org/viewvc/labs/droids/trunk/src/core/java/org/apache/droids/parse/html/HtmlParser.java?rev=691817&r1=691816&r2=691817&view=diff
==============================================================================
--- labs/droids/trunk/src/core/java/org/apache/droids/parse/html/HtmlParser.java (original)
+++ labs/droids/trunk/src/core/java/org/apache/droids/parse/html/HtmlParser.java Wed Sep  3 16:04:29 2008
@@ -65,7 +65,6 @@
   public Parse getParse(InputStream stream, Task newLink) {
     this.link = newLink;
     final String id = link.getId();
-    System.out.println("id: "+id);
     try {
       this.base = new URL(newLink.getId());
     } catch (MalformedURLException e1) {
@@ -142,7 +141,6 @@
       String nodeName = node.getNodeName().toLowerCase();
       if (elements.containsKey(nodeName)) {
         String value = elements.get(nodeName);
-        System.out.println("key "+nodeName+" value "+value);
         NamedNodeMap attrs = node.getAttributes();
         String target = null;
         for (int i = 0; i < attrs.getLength(); i++) {



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@labs.apache.org
For additional commands, e-mail: commits-help@labs.apache.org