BUG-7464: Switch to use forked TrieMap
[yangtools.git] / third-party / triemap / src / main / java / org / opendaylight / yangtools / triemap / MutableTrieMap.java
index 26fbba0816f59a44e9dd22c5d4e81654cc13bc8f..72c8b19870f7f9365893554f4dae32dbf47b797b 100644 (file)
@@ -35,7 +35,7 @@ import java.util.concurrent.atomic.AtomicReferenceFieldUpdater;
  * @param <V> the type of mapped values
  */
 @Beta
-final class MutableTrieMap<K, V> extends TrieMap<K, V> {
+public final class MutableTrieMap<K, V> extends TrieMap<K, V> {
     private static final long serialVersionUID = 1L;
 
     @SuppressWarnings("rawtypes")