mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-27 06:23:08 +08:00
style: enable MultipleVariableDeclarations
in checkstyle (#5175)
Co-authored-by: vaibhav <vaibhav.waghmare@techprescient.com>
This commit is contained in:
@ -27,7 +27,8 @@ public class BufferedReader {
|
||||
/**
|
||||
* posRead -> indicates the next byte to read
|
||||
*/
|
||||
private int posRead = 0, bufferPos = 0;
|
||||
private int posRead = 0;
|
||||
private int bufferPos = 0;
|
||||
|
||||
private boolean foundEof = false;
|
||||
|
||||
|
Reference in New Issue
Block a user