From 61ec076522fa5d61db746570b52977b7d28753df Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Sat, 14 May 2022 18:54:45 +0100 Subject: [PATCH] Annotate new queue as internal use only --- .../core/queue/BlockArrayCacheScopedQueueCoordinator.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Core/src/main/java/com/plotsquared/core/queue/BlockArrayCacheScopedQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/BlockArrayCacheScopedQueueCoordinator.java index 4d3a21a63..043e6e0ff 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/BlockArrayCacheScopedQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/BlockArrayCacheScopedQueueCoordinator.java @@ -26,6 +26,7 @@ package com.plotsquared.core.queue; import com.plotsquared.core.location.Location; +import com.plotsquared.core.util.AnnotationHelper; import com.sk89q.jnbt.CompoundTag; import com.sk89q.worldedit.function.pattern.Pattern; import com.sk89q.worldedit.math.BlockVector3; @@ -43,6 +44,7 @@ import org.checkerframework.checker.nullness.qual.Nullable; * in {@link BlockArrayCacheScopedQueueCoordinator#setOffsetX(int)} and * {@link BlockArrayCacheScopedQueueCoordinator#setOffsetZ(int)} */ +@AnnotationHelper.ApiDescription(info = "Internal use only. Subject to change at any time and created for specific use cases.") public class BlockArrayCacheScopedQueueCoordinator extends ScopedQueueCoordinator { private final BlockState[][][] blockStates;