Skip to content

Commit 01ddad4

Browse files
fix build
1 parent 57392f2 commit 01ddad4

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
public class _988 {
3737
public static class Solution1 {
3838
public String smallestFromLeaf(TreeNode root) {
39-
List<String> paths = new ArrayList<>();
39+
final List<String> paths = new ArrayList<>();
4040
Map<Integer, Character> map = new HashMap<>();
4141
map.put(0, 'a');
4242
map.put(1, 'b');

0 commit comments

Comments
 (0)