Remove unnecessary parameter

This commit is contained in:
Trustin Lee 2012-04-12 17:54:56 +09:00
parent 22a815eaf8
commit c7bd0b41e6

View File

@ -1,5 +1,5 @@
package io.netty.util;
public interface AttributeMap {
<T> Attribute<T> attr(AttributeKey key, Class<T> type);
<T> Attribute<T> attr(AttributeKey<T> key);
}