From 2a90015037bfb08cf6352f4e7145bb7b0475b4c7 Mon Sep 17 00:00:00 2001 From: Jordan Date: Sat, 11 Jun 2022 16:04:38 +0100 Subject: [PATCH] Address comments Co-authored-by: Alexander Brandes --- .../com/plotsquared/bukkit/queue/LimitedRegionWrapperQueue.java | 2 +- .../java/com/plotsquared/bukkit/schematic/StateWrapper.java | 2 +- .../src/main/java/com/plotsquared/core/generator/HybridGen.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/LimitedRegionWrapperQueue.java b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/LimitedRegionWrapperQueue.java index fe4921204..6009db3d6 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/LimitedRegionWrapperQueue.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/LimitedRegionWrapperQueue.java @@ -48,7 +48,7 @@ import org.checkerframework.checker.nullness.qual.NonNull; */ public class LimitedRegionWrapperQueue extends DelegateQueueCoordinator { - private static final Logger LOGGER = LogManager.getLogger(); + private static final Logger LOGGER = LogManager.getLogger("PlotSquared/" + LimitedRegionWrapperQueue.class.getSimpleName()); private final LimitedRegion limitedRegion; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/StateWrapper.java b/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/StateWrapper.java index 117a8deb1..a3d603dbf 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/StateWrapper.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/StateWrapper.java @@ -264,7 +264,7 @@ public class StateWrapper { /** * Get a CompoundTag of the contents of a block's inventory (chest, furnace, etc.). * - * @deprecated in favour of using WE methods for obtaining NBT, specifically by obtaining a + * @deprecated in favour of using WorldEdit methods for obtaining NBT, specifically by obtaining a * {@link com.sk89q.worldedit.world.block.BaseBlock} and then using {@link com.sk89q.worldedit.world.block.BaseBlock#getNbtData()} */ @Deprecated(forRemoval = true, since = "TODO") diff --git a/Core/src/main/java/com/plotsquared/core/generator/HybridGen.java b/Core/src/main/java/com/plotsquared/core/generator/HybridGen.java index e2a7cc7fa..053de6337 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/HybridGen.java +++ b/Core/src/main/java/com/plotsquared/core/generator/HybridGen.java @@ -385,7 +385,7 @@ public class HybridGen extends IndependentPlotGenerator { } /** - * Wrapper to allow a WE {@link Entity} to effectively have a mutable location as the location in its NBT should be changed + * Wrapper to allow a WorldEdit {@link Entity} to effectively have a mutable location as the location in its NBT should be changed * when set to the world. * * @since TODO