Skip to content

Commit

Permalink
Rename arg
Browse files Browse the repository at this point in the history
  • Loading branch information
Gbillou committed Aug 12, 2019
1 parent 75b57c2 commit be2b68b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private interface ISReader {
int readFrom(InputStream take) throws IOException;
}

private int readInternal(ISReader takeRead) throws IOException {
private int readInternal(ISReader isReader) throws IOException {
if (end) {
return -1;
}
Expand All @@ -85,7 +85,7 @@ private int readInternal(ISReader takeRead) throws IOException {
return -1;
}

int read = takeRead.readFrom(take);
int read = isReader.readFrom(take);

if (take.available() > 0) {
isList.addFirst(take);
Expand Down

0 comments on commit be2b68b

Please sign in to comment.