Fix checkstyle. See #307

This commit is contained in:
norman 2012-05-04 13:45:02 +02:00
parent 85a280b356
commit f5eb6b61cd

View File

@ -33,7 +33,7 @@ import org.jboss.netty.util.internal.ConcurrentIdentityWeakKeyHashMap;
* property, which performs better. * property, which performs better.
* @apiviz.stereotype utility * @apiviz.stereotype utility
*/ */
public class ChannelLocal<T> implements Iterable<Entry<Channel, T>>{ public class ChannelLocal<T> implements Iterable<Entry<Channel, T>> {
private final ConcurrentMap<Channel, T> map = private final ConcurrentMap<Channel, T> map =
new ConcurrentIdentityWeakKeyHashMap<Channel, T>(); new ConcurrentIdentityWeakKeyHashMap<Channel, T>();