Skip to content
This repository was archived by the owner on May 26, 2021. It is now read-only.

Commit 4984832

Browse files
committed
Sync with underscore-java.
1 parent 06963ad commit 4984832

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pom-pack.xml

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@
9191
<option>-keep public class com.github.underscore.PredicateIndexed { *; }</option>
9292
<option>-keep public class com.github.underscore.Template { *; }</option>
9393
<option>-keep public class com.github.underscore.Trie { *; }</option>
94+
<option>-keep public class com.github.underscore.Trie$TrieNode { *; }</option>
9495
<option>-keep public class com.github.underscore.Tuple { *; }</option>
9596
<option>-keep public class com.github.underscore.lodash.Base32 { *; }</option>
9697
<option>-keep public class com.github.underscore.lodash.Json { *; }</option>

src/main/java/com/github/underscore/Trie.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
package com.github.underscore;
2525

2626
public class Trie {
27-
static class TrieNode {
27+
public static class TrieNode {
2828
// Initialize your data structure here.
2929
TrieNode[] children;
3030
boolean isWord;

0 commit comments

Comments
 (0)