mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-28 19:03:51 -07:00
Fix/scoreboard delegate (#11453)
This commit is contained in:
@@ -4805,6 +4805,57 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ }
|
||||
+ }
|
||||
+}
|
||||
diff --git a/src/main/java/io/papermc/paper/util/SizeLimitedSet.java b/src/main/java/io/papermc/paper/util/SizeLimitedSet.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/io/papermc/paper/util/SizeLimitedSet.java
|
||||
@@ -0,0 +0,0 @@
|
||||
+package io.papermc.paper.util;
|
||||
+
|
||||
+import com.google.common.collect.ForwardingSet;
|
||||
+import java.util.Collection;
|
||||
+import java.util.Set;
|
||||
+import org.jspecify.annotations.NullMarked;
|
||||
+import org.jspecify.annotations.Nullable;
|
||||
+
|
||||
+@NullMarked
|
||||
+public class SizeLimitedSet<E> extends ForwardingSet<E> {
|
||||
+
|
||||
+ private final Set<E> delegate;
|
||||
+ private final int maxSize;
|
||||
+
|
||||
+ public SizeLimitedSet(final Set<E> delegate, final int maxSize) {
|
||||
+ this.delegate = delegate;
|
||||
+ this.maxSize = maxSize;
|
||||
+ }
|
||||
+
|
||||
+ @Override
|
||||
+ public boolean add(final E element) {
|
||||
+ if (this.size() >= this.maxSize) {
|
||||
+ return false;
|
||||
+ }
|
||||
+ return super.add(element);
|
||||
+ }
|
||||
+
|
||||
+ @Override
|
||||
+ public boolean addAll(final Collection<? extends @Nullable E> collection) {
|
||||
+ if ((collection.size() + this.size()) >= this.maxSize) {
|
||||
+ return false;
|
||||
+ }
|
||||
+ boolean edited = false;
|
||||
+
|
||||
+ for (final E element : collection) {
|
||||
+ edited |= super.add(element);
|
||||
+ }
|
||||
+ return edited;
|
||||
+ }
|
||||
+
|
||||
+ @Override
|
||||
+ protected Set<E> delegate() {
|
||||
+ return this.delegate;
|
||||
+ }
|
||||
+}
|
||||
diff --git a/src/main/java/io/papermc/paper/util/StackWalkerUtil.java b/src/main/java/io/papermc/paper/util/StackWalkerUtil.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000
|
||||
|
Reference in New Issue
Block a user