Added <Object, Object> generification for LazySortedMap to temporarily fix javac compilation problems
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/branches/collections_jdk5_branch@572156 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b2939e2c47
commit
03d2fa1c8a
|
@ -59,8 +59,8 @@ import org.apache.commons.collections.Transformer;
|
|||
* @author Paul Jack
|
||||
*/
|
||||
public class LazySortedMap
|
||||
extends LazyMap
|
||||
implements SortedMap {
|
||||
extends LazyMap<Object, Object>
|
||||
implements SortedMap<Object, Object> {
|
||||
|
||||
/** Serialization version */
|
||||
private static final long serialVersionUID = 2715322183617658933L;
|
||||
|
|
Loading…
Reference in New Issue