Stylistic tweaks

This commit is contained in:
Eric Scharff
2008-07-13 21:54:07 -06:00
parent 17a42c5611
commit 7534459fec
5 changed files with 14 additions and 15 deletions

View File

@ -38,11 +38,11 @@ public class PushbackReader extends Reader {
if (length > 0) {
int c = in.read(b, offset, length);
if (c == -1) {
if (count == 0) {
count = -1;
}
if (count == 0) {
count = -1;
}
} else {
count += c;
count += c;
}
}