You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wookie.apache.org by sc...@apache.org on 2011/04/28 19:32:42 UTC

svn commit: r1097558 - /incubator/wookie/trunk/parser/java/src/org/apache/wookie/w3c/updates/UpdateDescriptionDocument.java

Author: scottbw
Date: Thu Apr 28 17:32:41 2011
New Revision: 1097558

URL: http://svn.apache.org/viewvc?rev=1097558&view=rev
Log:
Removed another debug statement

Modified:
    incubator/wookie/trunk/parser/java/src/org/apache/wookie/w3c/updates/UpdateDescriptionDocument.java

Modified: incubator/wookie/trunk/parser/java/src/org/apache/wookie/w3c/updates/UpdateDescriptionDocument.java
URL: http://svn.apache.org/viewvc/incubator/wookie/trunk/parser/java/src/org/apache/wookie/w3c/updates/UpdateDescriptionDocument.java?rev=1097558&r1=1097557&r2=1097558&view=diff
==============================================================================
--- incubator/wookie/trunk/parser/java/src/org/apache/wookie/w3c/updates/UpdateDescriptionDocument.java (original)
+++ incubator/wookie/trunk/parser/java/src/org/apache/wookie/w3c/updates/UpdateDescriptionDocument.java Thu Apr 28 17:32:41 2011
@@ -135,7 +135,6 @@ public class UpdateDescriptionDocument{
 		} catch (MalformedURLException e) {
 			// If the URL is relative, try to make it absolute by using the URL where the UDD is obtained from as the base
 			try {
-				System.out.println(root.getAttributeValue("src"));
 				updateSource = new URL(baseUrl, root.getAttributeValue("src"));
 			} catch (MalformedURLException e1) {
 				throw new InvalidUDDException("src attribute is not a valid URL");