This commit is contained in:
kamhung
2015-11-27 19:10:10 +08:00
parent 0f2cf8108f
commit 21567aa511

View File

@@ -4,6 +4,8 @@
*/ */
package com.wentch.redkale.convert; package com.wentch.redkale.convert;
import java.lang.reflect.*;
/** /**
* 只增不减的伪Map类 * 只增不减的伪Map类
* *
@@ -12,7 +14,7 @@ package com.wentch.redkale.convert;
* @param <V> * @param <V>
*/ */
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
public final class HashedMap<K, V> { public final class HashedMap<K extends Type, V> {
protected final transient Entry<K, V>[] table; protected final transient Entry<K, V>[] table;