Remove an unnecessary while (true)
This block of code will either return -1 or fall through. The while (true) does nothing. The braces limit the scope of int rc.
Showing
Please
register
or
sign in
to comment
This block of code will either return -1 or fall through. The while (true) does nothing. The braces limit the scope of int rc.