Skip to content
Snippets Groups Projects
Verified Commit 2ec3fb6b authored by BIGARET Sebastien's avatar BIGARET Sebastien
Browse files

Remove a useless assignment

parent 4899fb8c
Branches
Tags
No related merge requests found
......@@ -121,7 +121,7 @@ public class StreamGobbler extends Thread {
idx++;
synchronized(sw) { sw.write(c); }
}
while ( (c = stream.read()) != -1) {/* limit exceeded: do nothing */}
while ( stream.read() != -1) {/* limit exceeded: do nothing */}
}
catch (IOException ioe)
{ // explicitly ignore the error, simply log it
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment