2004-05-05 Tom Tromey <tromey@redhat.com>
* java/io/BufferedReader.java (skip): Removed unused
variable.
From-SVN: r81511
+2004-05-05 Tom Tromey <tromey@redhat.com>
+
+ * java/io/BufferedReader.java (skip): Removed unused
+ variable.
+
2004-05-05 Michael Koch <konqueror@gmx.de>
* java/awt/FileDialog.java: Import java.io.Serializable explicitly.
// skip the '\n' for us). By doing this, we'll have to back up pos.
// That's easier than trying to keep track of whether we've skipped
// one element or not.
- int ch;
if (pos > limit)
- if ((ch = read()) < 0)
- return 0;
- else
- --pos;
+ {
+ if (read() < 0)
+ return 0;
+ else
+ --pos;
+ }
int avail = limit - pos;