Remove unnecessary assignments

Closes gh-10805
This commit is contained in:
Johnny Lim 2017-10-29 09:08:18 +09:00 committed by Stephane Nicoll
parent 03174277b4
commit 4979af9fa5
5 changed files with 6 additions and 6 deletions

View File

@ -209,7 +209,7 @@ class JsonReader {
StringBuilder out = new StringBuilder();
InputStreamReader reader = new InputStreamReader(in, charset);
char[] buffer = new char[BUFFER_SIZE];
int bytesRead = -1;
int bytesRead;
while ((bytesRead = reader.read(buffer)) != -1) {
out.append(buffer, 0, bytesRead);
}

View File

@ -78,7 +78,7 @@ public class DefaultLaunchScript implements LaunchScript {
private void copy(InputStream inputStream, OutputStream outputStream)
throws IOException {
byte[] buffer = new byte[BUFFER_SIZE];
int bytesRead = -1;
int bytesRead;
while ((bytesRead = inputStream.read(buffer)) != -1) {
outputStream.write(buffer, 0, bytesRead);
}

View File

@ -300,7 +300,7 @@ public class JarWriter implements LoaderClassesWriter {
@Override
public void write(OutputStream outputStream) throws IOException {
byte[] buffer = new byte[BUFFER_SIZE];
int bytesRead = -1;
int bytesRead;
while ((bytesRead = this.inputStream.read(buffer)) != -1) {
outputStream.write(buffer, 0, bytesRead);
}
@ -387,7 +387,7 @@ public class JarWriter implements LoaderClassesWriter {
private void load(InputStream inputStream) throws IOException {
byte[] buffer = new byte[BUFFER_SIZE];
int bytesRead = -1;
int bytesRead;
while ((bytesRead = inputStream.read(buffer)) != -1) {
this.crc.update(buffer, 0, bytesRead);
this.size += bytesRead;

View File

@ -107,7 +107,7 @@ public class TestJarFile {
}
private void copy(InputStream in, OutputStream out) throws IOException {
int bytesRead = -1;
int bytesRead;
while ((bytesRead = in.read(this.buffer)) != -1) {
out.write(this.buffer, 0, bytesRead);
}

View File

@ -150,7 +150,7 @@ public class JarFileArchive implements Archive {
OutputStream outputStream = new FileOutputStream(file);
try {
byte[] buffer = new byte[BUFFER_SIZE];
int bytesRead = -1;
int bytesRead;
while ((bytesRead = inputStream.read(buffer)) != -1) {
outputStream.write(buffer, 0, bytesRead);
}