java: style: prefer putting the square brackets on the type

* examples/java/calc/Calc.y, examples/java/simple/Calc.y,
* tests/calc.at, tests/local.at: here.
This commit is contained in:
Akim Demaille
2020-02-05 06:56:47 +01:00
parent d6f576102e
commit f705e9abdb
5 changed files with 5 additions and 5 deletions

View File

@@ -19,7 +19,7 @@
}
%code {
public static void main (String args[]) throws IOException
public static void main (String[] args) throws IOException
{
CalcLexer l = new CalcLexer (System.in);
Calc p = new Calc (l);

View File

@@ -14,7 +14,7 @@
}
%code {
public static void main (String args[]) throws IOException
public static void main (String[] args) throws IOException
{
CalcLexer l = new CalcLexer (System.in);
Calc p = new Calc (l);