diff options
Diffstat (limited to 'libjava/classpath/gnu/java/util/prefs/NodeReader.java')
-rw-r--r-- | libjava/classpath/gnu/java/util/prefs/NodeReader.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/classpath/gnu/java/util/prefs/NodeReader.java b/libjava/classpath/gnu/java/util/prefs/NodeReader.java index ae5510e1c13..0a49fc777d7 100644 --- a/libjava/classpath/gnu/java/util/prefs/NodeReader.java +++ b/libjava/classpath/gnu/java/util/prefs/NodeReader.java @@ -7,7 +7,7 @@ GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -128,7 +128,7 @@ public class NodeReader { readNodes(subnode); skipTill("</node>"); } - + } private void readMap(Preferences node) @@ -169,7 +169,7 @@ public class NodeReader { while(true) { if (line == null) throw new InvalidPreferencesFormatException(s + " not found"); - + int index = line.indexOf(s); if (index == -1) { line = br.readLine(); @@ -199,7 +199,7 @@ public class NodeReader { while(true) { if (line == null) throw new InvalidPreferencesFormatException("unexpected EOF"); - + int start = line.indexOf("<"); if (start == -1) { line = br.readLine(); |