13
0
geforkt von Mirrors/Velocity
Dieser Commit ist enthalten in:
Andrew Steinborn 2019-05-12 10:46:11 -04:00
Ursprung b5fcf685be
Commit 16d557a109
2 geänderte Dateien mit 6 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -38,7 +38,8 @@ public class CappedSet<T> extends ForwardingSet<T> {
@Override @Override
public boolean add(T element) { public boolean add(T element) {
if (this.delegate.size() >= upperSize) { if (this.delegate.size() >= upperSize) {
Preconditions.checkState(this.delegate.contains(element), "collection is too large (%s >= %s)", Preconditions.checkState(this.delegate.contains(element),
"collection is too large (%s >= %s)",
this.delegate.size(), this.upperSize); this.delegate.size(), this.upperSize);
return false; return false;
} }

Datei anzeigen

@ -1,6 +1,9 @@
package com.velocitypowered.proxy.util.collect; package com.velocitypowered.proxy.util.collect;
import static org.junit.jupiter.api.Assertions.*; import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
import com.google.common.collect.ImmutableSet; import com.google.common.collect.ImmutableSet;
import java.util.Collection; import java.util.Collection;