mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
Stylistic tweaks
This commit is contained in:
@ -41,8 +41,7 @@ public abstract class InputStream {
|
||||
int c;
|
||||
while ((c = read(buffer, 0, (int) (size < remaining ? size : remaining)))
|
||||
>= 0
|
||||
&& remaining > 0)
|
||||
{
|
||||
&& remaining > 0) {
|
||||
remaining -= c;
|
||||
}
|
||||
return count - remaining;
|
||||
|
Reference in New Issue
Block a user