Skip to content

Commit

Permalink
Normalize type declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Aug 23, 2023
1 parent d256a46 commit 94a9223
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/examples/Mini/ASCII_CharStream.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ static public void Done() {

static private void ExpandBuff(final boolean wrapAround) {
final char[] newbuffer = new char[bufsize + 2048];
final int newbufline[] = new int[bufsize + 2048];
final int newbufcolumn[] = new int[bufsize + 2048];
final int[] newbufline = new int[bufsize + 2048];
final int[] newbufcolumn = new int[bufsize + 2048];

try {
if (wrapAround) {
Expand Down
2 changes: 1 addition & 1 deletion src/examples/Mini/SimpleNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public void jjtAddChild(final Node n, final int i) {
if (children == null) {
children = new Node[i + 1];
} else if (i >= children.length) {
final Node c[] = new Node[i + 1];
final Node[] c = new Node[i + 1];
System.arraycopy(children, 0, c, 0, children.length);
children = c;
}
Expand Down

0 comments on commit 94a9223

Please sign in to comment.