Commit fb2323eb by Tom Tromey Committed by Tom Tromey

NodeWriter.java (writeParents): Removed debugging prints.

	* gnu/java/util/prefs/NodeWriter.java (writeParents): Removed
	debugging prints.
	* gnu/java/util/prefs/NodeReader.java (readNodes): Removed debugging
	print.
	(readEntries): Likewise.

From-SVN: r116247
parent 42031254
2006-08-18 Tom Tromey <tromey@redhat.com>
* gnu/java/util/prefs/NodeWriter.java (writeParents): Removed
debugging prints.
* gnu/java/util/prefs/NodeReader.java (readNodes): Removed debugging
print.
(readEntries): Likewise.
2006-08-09 Tom Tromey <tromey@redhat.com> 2006-08-09 Tom Tromey <tromey@redhat.com>
PR classpath/28666: PR classpath/28666:
......
...@@ -124,7 +124,6 @@ public class NodeReader { ...@@ -124,7 +124,6 @@ public class NodeReader {
skipTill("name=\""); skipTill("name=\"");
String name = readTill("\""); String name = readTill("\"");
Preferences subnode = node.node(name); Preferences subnode = node.node(name);
System.out.println("Found subnode: " + subnode.absolutePath());
readMap(subnode); readMap(subnode);
readNodes(subnode); readNodes(subnode);
skipTill("</node>"); skipTill("</node>");
...@@ -160,7 +159,6 @@ public class NodeReader { ...@@ -160,7 +159,6 @@ public class NodeReader {
String key = readTill("\""); String key = readTill("\"");
skipTill("value=\""); skipTill("value=\"");
String value = readTill("\""); String value = readTill("\"");
System.out.println("Key: " + key + " Value: " + value);
node.put(key, value); node.put(key, value);
} }
} }
......
...@@ -203,9 +203,6 @@ public class NodeWriter { ...@@ -203,9 +203,6 @@ public class NodeWriter {
StringTokenizer st = new StringTokenizer(path); StringTokenizer st = new StringTokenizer(path);
parents = st.countTokens(); parents = st.countTokens();
System.out.println("path: " + path);
System.out.println("parents: " + parents);
for (int i=0; i<parents; i++) { for (int i=0; i<parents; i++) {
String name = st.nextToken(); String name = st.nextToken();
indent(i+2); indent(i+2);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment