system.out removed

pull/337/head
Nikita 9 years ago
parent 8022640051
commit 8c3ef0694d

@ -550,7 +550,6 @@ public class RedissonList<V> extends RedissonExpirable implements RList<V> {
public int hashCode() {
int hashCode = 1;
for (V e : this) {
System.out.println("t " + hashCode + " u " + e.hashCode());
hashCode = 31*hashCode + (e==null ? 0 : e.hashCode());
}
return hashCode;

Loading…
Cancel
Save