Change array type syntax in Java file template

Square brackets following the element type are more common.
This commit is contained in:
Philipp Wiesemann 2016-06-15 23:05:09 +02:00
parent 0ec12ca11d
commit be4ed86f35

View File

@ -2,7 +2,7 @@
public class {untitled} {
public static void main (String args[]) {
public static void main (String[] args) {
}
}