Skip to content

Commit e38984e

Browse files
fix build
1 parent 8176b2f commit e38984e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/fishercoder/solutions/_1381.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public static class Solution2 {
4646
public static class CustomStack {
4747
private int top;
4848
private int maxSize;
49-
private int stack[];
49+
private int[] stack;
5050

5151
public CustomStack(int maxSize) {
5252
this.maxSize = maxSize;

0 commit comments

Comments
 (0)