The classes have serial ids; no need to suppress the warning
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1470339 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
afae3dd81d
commit
1df5607ba7
|
@ -253,7 +253,6 @@ public class LRUMapTest<K, V> extends AbstractOrderedMapTest<K, V> {
|
|||
assertEquals(true, map.containsKey("C"));
|
||||
}
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
static class MockLRUMapSubclass<K, V> extends LRUMap<K, V> {
|
||||
/**
|
||||
* Generated serial version ID.
|
||||
|
@ -308,7 +307,6 @@ public class LRUMapTest<K, V> extends AbstractOrderedMapTest<K, V> {
|
|||
assertEquals(true, map.containsKey("C"));
|
||||
}
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
static class MockLRUMapSubclassBlocksRemove<K, V> extends LRUMap<K, V> {
|
||||
/**
|
||||
* Generated serial version ID.
|
||||
|
@ -341,7 +339,6 @@ public class LRUMapTest<K, V> extends AbstractOrderedMapTest<K, V> {
|
|||
assertEquals(true, map.containsKey("C"));
|
||||
}
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
static class MockLRUMapSubclassFirstBlocksRemove<K, V> extends LRUMap<K, V> {
|
||||
/**
|
||||
* Generated serial version ID.
|
||||
|
|
Loading…
Reference in New Issue