Merge pull request #10805 from izeye:unused-20171029

* pr/10805:
  Remove unnecessary assignments
This commit is contained in:
Stephane Nicoll 2017-10-29 14:10:35 +01:00
commit 37d229b1d6
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);
}