[COLLECTION-225] Added missing Unmodifiable marker interface.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1365738 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c57a9af3e7
commit
ff79ffc826
|
@ -9,6 +9,7 @@ import java.util.Set;
|
||||||
import java.util.SortedMap;
|
import java.util.SortedMap;
|
||||||
|
|
||||||
import org.apache.commons.collections.Trie;
|
import org.apache.commons.collections.Trie;
|
||||||
|
import org.apache.commons.collections.Unmodifiable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An unmodifiable {@link Trie}.
|
* An unmodifiable {@link Trie}.
|
||||||
|
@ -16,7 +17,7 @@ import org.apache.commons.collections.Trie;
|
||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
* @version $Id$
|
||||||
*/
|
*/
|
||||||
public class UnmodifiableTrie<K, V> implements Trie<K, V>, Serializable {
|
public class UnmodifiableTrie<K, V> implements Trie<K, V>, Serializable, Unmodifiable {
|
||||||
|
|
||||||
private static final long serialVersionUID = -7156426030315945159L;
|
private static final long serialVersionUID = -7156426030315945159L;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue