submap view serialization works now properly.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1493561 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-06-16 18:16:01 +00:00
parent ce1dc52bec
commit 99c63edb10
1 changed files with 1 additions and 7 deletions

View File

@ -51,18 +51,12 @@ public class LazySortedMapTest<K, V> extends AbstractSortedMapTest<K, V> {
return lazySortedMap(new TreeMap<K,V>(), FactoryUtils.<V>nullFactory());
}
@Override
public boolean isSubMapViewsSerializable() {
// TODO TreeMap sub map views have a bug in deserialization.
return false;
}
@Override
public boolean isAllowNullKey() {
return false;
}
// from TestLazyMap
// from LazyMapTest
//-----------------------------------------------------------------------
@Override
public void testMapGet() {