Commit a54f498a by Tom Tromey Committed by Michael Koch

BufferedReader.java (skip): Removed unused variable.

2004-05-05  Tom Tromey  <tromey@redhat.com>

	* java/io/BufferedReader.java (skip): Removed unused
	variable.

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