mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-02 03:16:41 +00:00
@ -55,7 +55,7 @@ public class LimitExtent extends AbstractDelegateExtent implements IBatchProcess
|
||||
* @param limit the limit
|
||||
* @deprecated Use {@link LimitExtent#LimitExtent(Extent, FaweLimit, Consumer, boolean)}
|
||||
*/
|
||||
@Deprecated(forRemoval = true, since = "TODO")
|
||||
@Deprecated(forRemoval = true, since = "2.12.0")
|
||||
public LimitExtent(Extent extent, FaweLimit limit) {
|
||||
this(extent, limit, c -> {
|
||||
});
|
||||
@ -69,7 +69,7 @@ public class LimitExtent extends AbstractDelegateExtent implements IBatchProcess
|
||||
* @param onErrorMessage consumer to handle a component generated by exceptions
|
||||
* @deprecated Use {@link LimitExtent#LimitExtent(Extent, FaweLimit, Consumer, boolean)}
|
||||
*/
|
||||
@Deprecated(forRemoval = true, since = "TODO")
|
||||
@Deprecated(forRemoval = true, since = "2.12.0")
|
||||
public LimitExtent(Extent extent, FaweLimit limit, Consumer<Component> onErrorMessage) {
|
||||
this(extent, limit, onErrorMessage, false);
|
||||
}
|
||||
@ -81,7 +81,7 @@ public class LimitExtent extends AbstractDelegateExtent implements IBatchProcess
|
||||
* @param limit the limit
|
||||
* @param onErrorMessage consumer to handle a component generated by exceptions
|
||||
* @param processing if this limit extent is expected to be processing
|
||||
* @since TODO
|
||||
* @since 2.12.0
|
||||
*/
|
||||
public LimitExtent(
|
||||
Extent extent,
|
||||
|
@ -60,7 +60,7 @@ public abstract class LinearClipboard extends SimpleClipboard {
|
||||
/**
|
||||
* @deprecated will be removed as it is unused and uses outdated types
|
||||
*/
|
||||
@Deprecated(forRemoval = true, since = "TODO")
|
||||
@Deprecated(forRemoval = true, since = "2.12.0")
|
||||
public abstract Collection<CompoundTag> getTileEntities();
|
||||
|
||||
@Override
|
||||
|
@ -299,7 +299,7 @@ public class FaweLimit {
|
||||
/**
|
||||
* Get an {@link FaweLimit} representing the amount of a limit used from a given "original" limit
|
||||
*
|
||||
* @since TODO
|
||||
* @since 2.12.0
|
||||
*/
|
||||
public FaweLimit getLimitUsed(FaweLimit originalLimit) {
|
||||
FaweLimit newLimit = new FaweLimit();
|
||||
|
@ -216,7 +216,7 @@ public final class NbtUtils {
|
||||
* {@return the position data of the given tag}
|
||||
*
|
||||
* @param compoundTag the tag to extract position information from
|
||||
* @since TODO
|
||||
* @since 2.12.0
|
||||
*/
|
||||
public static Vector3 entityPosition(FaweCompoundTag compoundTag) {
|
||||
LinListTag<LinDoubleTag> pos = compoundTag.linTag().getListTag("Pos", LinTagType.doubleTag());
|
||||
|
@ -44,7 +44,7 @@ public interface Brush {
|
||||
/**
|
||||
* If this brush is expected to set blocks synchronously, i.e. from one thread (at a time)
|
||||
*
|
||||
* @since TODO
|
||||
* @since 2.12.0
|
||||
*/
|
||||
default boolean setsSynchronously() {
|
||||
return true;
|
||||
|
@ -10,7 +10,7 @@ import java.lang.annotation.Target;
|
||||
/**
|
||||
* Indicates it is expected that blocks will only be set synchronously, i.e. from one thread (at a time)
|
||||
*
|
||||
* @since TODO
|
||||
* @since 2.12.0
|
||||
*/
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Target({
|
||||
|
Reference in New Issue
Block a user