You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We allow array type declarations in both Java and C styles, e.g.
Java style: public static void main(String[] args)
C style: public static void main(String args[])
However, Java style is preferred and we should only use this style
in our project.
Let's add ArrayTypeStyle rule to ensure that only the Java style
of array type declarations is used.
0 commit comments