mirror of
https://github.com/corda/corda.git
synced 2025-01-24 13:28:07 +00:00
Stylistic tweaks
This commit is contained in:
parent
17a42c5611
commit
7534459fec
@ -41,8 +41,7 @@ public abstract class InputStream {
|
|||||||
int c;
|
int c;
|
||||||
while ((c = read(buffer, 0, (int) (size < remaining ? size : remaining)))
|
while ((c = read(buffer, 0, (int) (size < remaining ? size : remaining)))
|
||||||
>= 0
|
>= 0
|
||||||
&& remaining > 0)
|
&& remaining > 0) {
|
||||||
{
|
|
||||||
remaining -= c;
|
remaining -= c;
|
||||||
}
|
}
|
||||||
return count - remaining;
|
return count - remaining;
|
||||||
|
Loading…
Reference in New Issue
Block a user