Closed
Description
Pretty much all codeboxes in 'src/boxed_primitives' are not formatted correctly.
Instead of:
void main() {
Boolean b = null;
System.out.println(b);
b = true;
System.out.println(true);
}
They are formatted without the tab before new line in method body:
void main() {
Boolean b = null;
System.out.println(b);
b = true;
System.out.println(true);
}
This is just ugly and bad for readability.
Metadata
Metadata
Assignees
Labels
No labels