Example

public class TestClass {
int i = 0; int j = 0;
}


Solution
Always write one statement per line. Move the second statement to a new line.

public class TestClass {
int i = 0;
int j = 0;
}