-
Notifications
You must be signed in to change notification settings - Fork 170
Closed
Description
There are 2 indentation styles in the current code base. Which are mostly the same except for line wrapping.
It would be better to have it unified early. How do you think?
4 spaces for line wrapping
public static void main(String[] args)
throws Exception {
for (int i = 0; i < args.length; i++) {
System.out.println("Greeting the " + i +
"-th argument");
System.out.println("hello, " + args[i]);
}
}2 spaces for line wrapping
public static void main(String[] args)
throws Exception {
for (int i = 0; i < args.length; i++) {
System.out.println("Greeting the " + i +
"-th argument");
System.out.println("hello, " + args[i]);
}
}Metadata
Metadata
Assignees
Labels
No labels