aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/util
diff options
context:
space:
mode:
authorJulian Dolby <dolby@us.ibm.com>2003-01-31 17:00:01 +0000
committerTom Tromey <tromey@gcc.gnu.org>2003-01-31 17:00:01 +0000
commit371ac725580efe2c70111c2403a98b0fef3b11d6 (patch)
tree5299404669bc9d7ab9101193eea42d52ff19ed9c /libjava/java/util
parentdb0f613dfa664a3c657ba3245f49d42a7431587e (diff)
downloadgcc-371ac725580efe2c70111c2403a98b0fef3b11d6.zip
gcc-371ac725580efe2c70111c2403a98b0fef3b11d6.tar.gz
gcc-371ac725580efe2c70111c2403a98b0fef3b11d6.tar.bz2
Properties.java (load): Ignore backslash before EOF.
2003-01-31 Julian Dolby <dolby@us.ibm.com> * java/util/Properties.java (load): Ignore backslash before EOF. From-SVN: r62186
Diffstat (limited to 'libjava/java/util')
-rw-r--r--libjava/java/util/Properties.java9
1 files changed, 8 insertions, 1 deletions
diff --git a/libjava/java/util/Properties.java b/libjava/java/util/Properties.java
index cb77661..907ec2c 100644
--- a/libjava/java/util/Properties.java
+++ b/libjava/java/util/Properties.java
@@ -1,5 +1,5 @@
/* Properties.java -- a set of persistent properties
- Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
+ Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -271,6 +271,13 @@ label = Name:\\u0020</pre>
{
// The line continues on the next line.
line = reader.readLine();
+
+ // We might have seen a backslash at the end of
+ // the file. The JDK ignores the backslash in
+ // this case, so we follow for compatibility.
+ if (line == null)
+ break;
+
pos = 0;
while (pos < line.length()
&& Character.isWhitespace(c = line.charAt(pos)))