From a822a70f00135a88d81859fa793d95f98f3f517d Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Fri, 18 Sep 2020 12:11:34 +0100 Subject: [PATCH 01/35] bump minimessage so it compiles --- Core/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/build.gradle b/Core/build.gradle index b47d359d0..167600f33 100644 --- a/Core/build.gradle +++ b/Core/build.gradle @@ -16,7 +16,7 @@ dependencies { implementation("org.khelekore:prtree:1.7.0-SNAPSHOT") // Adventure related stuff implementation('net.kyori:adventure-api:4.0.0-SNAPSHOT') - implementation('net.kyori:adventure-text-minimessage:3.0.0-SNAPSHOT') + implementation('net.kyori:adventure-text-minimessage:4.0.0-SNAPSHOT') compile("com.google.inject:guice:4.2.3") compile("com.google.inject.extensions:guice-assistedinject:4.2.3") compile group: 'com.google.code.findbugs', name: 'annotations', version: '3.0.1' @@ -82,7 +82,7 @@ shadowJar { include(dependency('net.kyori:adventure-gson:4.0.0-SNAPSHOT')) include(dependency('net.kyori:adventure-legacy:4.0.0-SNAPSHOT')) include(dependency('net.kyori:adventure-plain:4.0.0-SNAPSHOT')) - include(dependency('net.kyori:adventure-text-minimessage:3.0.0-SNAPSHOT')) + include(dependency('net.kyori:adventure-text-minimessage:4.0.0-SNAPSHOT')) include(dependency('org.khelekore:prtree:1.7.0-SNAPSHOT')) } relocate('net.kyori.text', 'com.plotsquared.formatting.text') From 41f494fbff1c7bbcc4989d96fd4669f5a9ab700f Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Fri, 18 Sep 2020 12:45:26 +0100 Subject: [PATCH 02/35] Remove jetbrains annotations --- Core/build.gradle | 1 - Core/pom.xml | 6 --- .../core/generator/HybridPlotManager.java | 3 +- .../core/generator/SquarePlotManager.java | 7 ++-- .../ChunkCoordinatorBuilderFactory.java | 3 +- .../plotsquared/core/player/PlotPlayer.java | 3 +- .../plotsquared/core/plot/BlockBucket.java | 7 ++-- .../core/plot/world/SinglePlotManager.java | 37 +++++++++---------- .../core/util/placeholders/Placeholder.java | 9 +++-- .../placeholders/PlaceholderRegistry.java | 28 +++++++------- .../placeholders/PlotFlagPlaceholder.java | 9 +++-- .../placeholders/PlotSpecificPlaceholder.java | 11 +++--- build.gradle | 2 - 13 files changed, 57 insertions(+), 69 deletions(-) diff --git a/Core/build.gradle b/Core/build.gradle index 167600f33..57300b946 100644 --- a/Core/build.gradle +++ b/Core/build.gradle @@ -12,7 +12,6 @@ dependencies { force = true } implementation("org.jetbrains.kotlin:kotlin-stdlib:1.3.72") - implementation("org.jetbrains:annotations:20.0.0") implementation("org.khelekore:prtree:1.7.0-SNAPSHOT") // Adventure related stuff implementation('net.kyori:adventure-api:4.0.0-SNAPSHOT') diff --git a/Core/pom.xml b/Core/pom.xml index 50a5c1be6..585b9a423 100644 --- a/Core/pom.xml +++ b/Core/pom.xml @@ -92,12 +92,6 @@ 1.3.72 runtime - - org.jetbrains - annotations - 20.0.0 - runtime - org.khelekore prtree diff --git a/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java b/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java index c16ea4c6a..95d330057 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java @@ -46,7 +46,6 @@ import com.sk89q.worldedit.world.biome.BiomeType; import com.sk89q.worldedit.world.block.BaseBlock; import com.sk89q.worldedit.world.block.BlockState; import com.sk89q.worldedit.world.block.BlockTypes; -import org.jetbrains.annotations.NotNull; import javax.annotation.Nonnull; import javax.annotation.Nullable; @@ -268,7 +267,7 @@ public class HybridPlotManager extends ClassicPlotManager { * @param plot The plot * @return The location where a sign should be */ - @Override public Location getSignLoc(@Nonnull final @NotNull Plot plot) { + @Override public Location getSignLoc(@Nonnull final Plot plot) { return hybridPlotWorld.getSignLocation(plot); } diff --git a/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java b/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java index 8c4b09fdd..54104cae5 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java @@ -34,7 +34,6 @@ import com.plotsquared.core.queue.QueueCoordinator; import com.plotsquared.core.util.HashUtil; import com.plotsquared.core.util.RegionManager; import com.sk89q.worldedit.regions.CuboidRegion; -import org.jetbrains.annotations.NotNull; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -59,7 +58,7 @@ public abstract class SquarePlotManager extends GridPlotManager { this.regionManager = regionManager; } - @Override public boolean clearPlot(final @NotNull Plot plot, final @Nullable Runnable whenDone, @Nullable QueueCoordinator queue) { + @Override public boolean clearPlot(final @Nonnull Plot plot, final @Nullable Runnable whenDone, @Nullable QueueCoordinator queue) { final Set regions = plot.getRegions(); Runnable run = new Runnable() { @Override public void run() { @@ -81,7 +80,7 @@ public abstract class SquarePlotManager extends GridPlotManager { return true; } - @Override public Location getPlotTopLocAbs(@NotNull PlotId plotId) { + @Override public Location getPlotTopLocAbs(@Nonnull PlotId plotId) { int px = plotId.getX(); int pz = plotId.getY(); int x = (squarePlotWorld.ROAD_OFFSET_X + (px * (squarePlotWorld.ROAD_WIDTH + squarePlotWorld.PLOT_WIDTH))) - (int) Math @@ -242,7 +241,7 @@ public abstract class SquarePlotManager extends GridPlotManager { /** * Get the bottom plot loc (some basic math). */ - @Override public Location getPlotBottomLocAbs(@NotNull PlotId plotId) { + @Override public Location getPlotBottomLocAbs(@Nonnull PlotId plotId) { int px = plotId.getX(); int pz = plotId.getY(); int x = (squarePlotWorld.ROAD_OFFSET_X + (px * (squarePlotWorld.ROAD_WIDTH + squarePlotWorld.PLOT_WIDTH))) - squarePlotWorld.PLOT_WIDTH diff --git a/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorBuilderFactory.java b/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorBuilderFactory.java index aad7be0de..95d9ce52b 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorBuilderFactory.java +++ b/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorBuilderFactory.java @@ -28,12 +28,11 @@ package com.plotsquared.core.inject.factory; import com.google.inject.Inject; import com.google.inject.assistedinject.Assisted; import com.plotsquared.core.queue.ChunkCoordinatorBuilder; -import org.jetbrains.annotations.NotNull; import javax.annotation.Nonnull; public interface ChunkCoordinatorBuilderFactory { - @Inject @Nonnull ChunkCoordinatorBuilder create(@Assisted @NotNull ChunkCoordinatorFactory chunkCoordinatorFactory); + @Inject @Nonnull ChunkCoordinatorBuilder create(@Assisted @Nonnull ChunkCoordinatorFactory chunkCoordinatorFactory); } diff --git a/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java b/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java index 39a603831..5624f8ad8 100644 --- a/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java +++ b/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java @@ -68,7 +68,6 @@ import net.kyori.adventure.text.Component; import net.kyori.adventure.text.minimessage.MiniMessage; import net.kyori.adventure.text.minimessage.Template; import net.kyori.adventure.title.Title; -import org.jetbrains.annotations.NotNull; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -851,7 +850,7 @@ public abstract class PlotPlayer

implements CommandCaller, OfflinePlotPlayer, } // Redefine from PermissionHolder as it's required from CommandCaller - @Override public boolean hasPermission(@NotNull String permission) { + @Override public boolean hasPermission(@Nonnull String permission) { return hasPermission(null, permission); } diff --git a/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java b/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java index e09dead4d..027948fbe 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java +++ b/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java @@ -36,7 +36,6 @@ import com.sk89q.worldedit.function.pattern.BlockPattern; import com.sk89q.worldedit.function.pattern.Pattern; import com.sk89q.worldedit.world.block.BlockState; import com.sk89q.worldedit.world.block.BlockType; -import org.jetbrains.annotations.NotNull; import javax.annotation.Nonnull; import java.util.Arrays; @@ -57,21 +56,21 @@ public final class BlockBucket implements ConfigurationSerializable { private BlockState single; private Pattern pattern; - public BlockBucket(@NotNull final BlockType type) { + public BlockBucket(@Nonnull final BlockType type) { this(type.getId()); this.single = type.getDefaultState(); this.pattern = new BlockPattern(this.single); this.compiled = true; } - public BlockBucket(@NotNull final BlockState state) { + public BlockBucket(@Nonnull final BlockState state) { this(state.getAsString()); this.single = state; this.pattern = new BlockPattern(this.single); this.compiled = true; } - public BlockBucket(@NotNull final String input) { + public BlockBucket(@Nonnull final String input) { this.input = new StringBuilder(input); } diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java index c76c522b9..756409612 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java @@ -35,7 +35,6 @@ import com.plotsquared.core.queue.QueueCoordinator; import com.plotsquared.core.util.FileUtils; import com.plotsquared.core.util.task.TaskManager; import com.sk89q.worldedit.function.pattern.Pattern; -import org.jetbrains.annotations.NotNull; import javax.annotation.Nonnull; import javax.annotation.Nullable; @@ -56,15 +55,15 @@ public class SinglePlotManager extends PlotManager { return PlotId.of(0, 0); } - @Override public Location getPlotBottomLocAbs(@Nonnull final @NotNull PlotId plotId) { + @Override public Location getPlotBottomLocAbs(@Nonnull final PlotId plotId) { return Location.at(plotId.toCommaSeparatedString(), -30000000, 0, -30000000); } - @Override public Location getPlotTopLocAbs(@Nonnull final @NotNull PlotId plotId) { + @Override public Location getPlotTopLocAbs(@Nonnull final PlotId plotId) { return Location.at(plotId.toCommaSeparatedString(), 30000000, 0, 30000000); } - @Override public boolean clearPlot(@NotNull Plot plot, final Runnable whenDone, @Nullable QueueCoordinator queue) { + @Override public boolean clearPlot(@Nonnull Plot plot, final Runnable whenDone, @Nullable QueueCoordinator queue) { PlotSquared.platform().getSetupUtils().unload(plot.getWorldName(), false); final File worldFolder = new File(PlotSquared.platform().getWorldContainer(), plot.getWorldName()); TaskManager.getPlatformImplementation().taskAsync(() -> { @@ -76,68 +75,68 @@ public class SinglePlotManager extends PlotManager { return true; } - @Override public boolean claimPlot(@NotNull Plot plot, @Nullable QueueCoordinator queue) { + @Override public boolean claimPlot(@Nonnull Plot plot, @Nullable QueueCoordinator queue) { // TODO return true; } - @Override public boolean unClaimPlot(@NotNull Plot plot, Runnable whenDone, @Nullable QueueCoordinator queue) { + @Override public boolean unClaimPlot(@Nonnull Plot plot, Runnable whenDone, @Nullable QueueCoordinator queue) { if (whenDone != null) { whenDone.run(); } return true; } - @Override public Location getSignLoc(@NotNull Plot plot) { + @Override public Location getSignLoc(@Nonnull Plot plot) { return null; } - @Override public String[] getPlotComponents(@NotNull PlotId plotId) { + @Override public String[] getPlotComponents(@Nonnull PlotId plotId) { return new String[0]; } @Override - public boolean setComponent(@NotNull PlotId plotId, @NotNull String component, @NotNull Pattern blocks, @Nullable QueueCoordinator queue) { + public boolean setComponent(@Nonnull PlotId plotId, @Nonnull String component, @Nonnull Pattern blocks, @Nullable QueueCoordinator queue) { return false; } - @Override public boolean createRoadEast(@NotNull Plot plot, @Nullable QueueCoordinator queue) { + @Override public boolean createRoadEast(@Nonnull Plot plot, @Nullable QueueCoordinator queue) { return false; } - @Override public boolean createRoadSouth(@NotNull Plot plot, @Nullable QueueCoordinator queue) { + @Override public boolean createRoadSouth(@Nonnull Plot plot, @Nullable QueueCoordinator queue) { return false; } - @Override public boolean createRoadSouthEast(@NotNull Plot plot, @Nullable QueueCoordinator queue) { + @Override public boolean createRoadSouthEast(@Nonnull Plot plot, @Nullable QueueCoordinator queue) { return false; } - @Override public boolean removeRoadEast(@NotNull Plot plot, @Nullable QueueCoordinator queue) { + @Override public boolean removeRoadEast(@Nonnull Plot plot, @Nullable QueueCoordinator queue) { return false; } - @Override public boolean removeRoadSouth(@NotNull Plot plot, @Nullable QueueCoordinator queue) { + @Override public boolean removeRoadSouth(@Nonnull Plot plot, @Nullable QueueCoordinator queue) { return false; } - @Override public boolean removeRoadSouthEast(@NotNull Plot plot, @Nullable QueueCoordinator queue) { + @Override public boolean removeRoadSouthEast(@Nonnull Plot plot, @Nullable QueueCoordinator queue) { return false; } - @Override public boolean startPlotMerge(@NotNull List plotIds, @Nullable QueueCoordinator queue) { + @Override public boolean startPlotMerge(@Nonnull List plotIds, @Nullable QueueCoordinator queue) { return false; } - @Override public boolean startPlotUnlink(@NotNull List plotIds, @Nullable QueueCoordinator queue) { + @Override public boolean startPlotUnlink(@Nonnull List plotIds, @Nullable QueueCoordinator queue) { return false; } - @Override public boolean finishPlotMerge(@NotNull List plotIds, @Nullable QueueCoordinator queue) { + @Override public boolean finishPlotMerge(@Nonnull List plotIds, @Nullable QueueCoordinator queue) { return false; } - @Override public boolean finishPlotUnlink(@NotNull List plotIds, @Nullable QueueCoordinator queue) { + @Override public boolean finishPlotUnlink(@Nonnull List plotIds, @Nullable QueueCoordinator queue) { return false; } diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java index 478a4053f..49071f9bc 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java @@ -27,7 +27,8 @@ package com.plotsquared.core.util.placeholders; import com.google.common.base.Preconditions; import com.plotsquared.core.player.PlotPlayer; -import org.jetbrains.annotations.NotNull; + +import javax.annotation.Nonnull; /** * A placeholder is a keyed value that gets replaced by a {@link PlotPlayer player}-specific value at runtime @@ -36,7 +37,7 @@ public abstract class Placeholder { private final String key; - public Placeholder(@NotNull final String key) { + public Placeholder(@Nonnull final String key) { this.key = Preconditions.checkNotNull(key, "Key may not be null"); } @@ -46,14 +47,14 @@ public abstract class Placeholder { * @param player Player * @return Placeholder value. Return {@code ""} if no placeholder value can be returned */ - @NotNull public abstract String getValue(@NotNull final PlotPlayer player); + @Nonnull public abstract String getValue(@Nonnull final PlotPlayer player); /** * Get the placeholder key * * @return Placeholder key */ - @NotNull public final String getKey() { + @Nonnull public final String getKey() { return this.key; } diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java index e9f1847cd..ab4ed8778 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java @@ -34,9 +34,9 @@ import com.plotsquared.core.plot.flag.GlobalFlagContainer; import com.plotsquared.core.plot.flag.PlotFlag; import com.plotsquared.core.util.EventDispatcher; import com.plotsquared.core.util.PlayerManager; -import org.jetbrains.annotations.NotNull; -import org.jetbrains.annotations.Nullable; +import javax.annotation.Nonnull; +import javax.annotation.Nullable; import java.util.Collection; import java.util.Collections; import java.util.Locale; @@ -52,7 +52,7 @@ public final class PlaceholderRegistry { private final Map placeholders; private final EventDispatcher eventDispatcher; - public PlaceholderRegistry(@NotNull final EventDispatcher eventDispatcher) { + public PlaceholderRegistry(@Nonnull final EventDispatcher eventDispatcher) { this.placeholders = Maps.newHashMap(); this.eventDispatcher = eventDispatcher; this.registerDefault(); @@ -124,10 +124,10 @@ public final class PlaceholderRegistry { * @param key Placeholder key * @param placeholderFunction Placeholder generator. Cannot return null */ - @SuppressWarnings("ALL") public void createPlaceholder(@NotNull final String key, - @NotNull final Function, String> placeholderFunction) { + @SuppressWarnings("ALL") public void createPlaceholder(@Nonnull final String key, + @Nonnull final Function, String> placeholderFunction) { this.registerPlaceholder(new Placeholder(key) { - @Override @NotNull public String getValue(@NotNull final PlotPlayer player) { + @Override @Nonnull public String getValue(@Nonnull final PlotPlayer player) { return placeholderFunction.apply(player); } }); @@ -139,10 +139,10 @@ public final class PlaceholderRegistry { * @param key Placeholder key * @param placeholderFunction Placeholder generator. Cannot return null */ - public void createPlaceholder(@NotNull final String key, - @NotNull final BiFunction, Plot, String> placeholderFunction) { + public void createPlaceholder(@Nonnull final String key, + @Nonnull final BiFunction, Plot, String> placeholderFunction) { this.registerPlaceholder(new PlotSpecificPlaceholder(key) { - @Override @NotNull public String getValue(@NotNull final PlotPlayer player, @NotNull final Plot plot) { + @Override @Nonnull public String getValue(@Nonnull final PlotPlayer player, @Nonnull final Plot plot) { return placeholderFunction.apply(player, plot); } }); @@ -153,7 +153,7 @@ public final class PlaceholderRegistry { * * @param placeholder Placeholder instance */ - public void registerPlaceholder(@NotNull final Placeholder placeholder) { + public void registerPlaceholder(@Nonnull final Placeholder placeholder) { final Placeholder previous = this.placeholders .put(placeholder.getKey().toLowerCase(Locale.ENGLISH), Preconditions.checkNotNull(placeholder, "Placeholder may not be null")); @@ -168,7 +168,7 @@ public final class PlaceholderRegistry { * @param key Placeholder key * @return Placeholder value */ - @Nullable public Placeholder getPlaceholder(@NotNull final String key) { + @Nullable public Placeholder getPlaceholder(@Nonnull final String key) { return this.placeholders.get( Preconditions.checkNotNull(key, "Key may not be null").toLowerCase(Locale.ENGLISH)); } @@ -181,8 +181,8 @@ public final class PlaceholderRegistry { * @param player Player to evaluate for * @return Replacement value */ - @NotNull public String getPlaceholderValue(@NotNull final String key, - @NotNull final PlotPlayer player) { + @Nonnull public String getPlaceholderValue(@Nonnull final String key, + @Nonnull final PlotPlayer player) { final Placeholder placeholder = getPlaceholder(key); if (placeholder == null) { return ""; @@ -209,7 +209,7 @@ public final class PlaceholderRegistry { * * @return Unmodifiable collection of placeholders */ - @NotNull public Collection getPlaceholders() { + @Nonnull public Collection getPlaceholders() { return Collections.unmodifiableCollection(this.placeholders.values()); } diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java index 777db3ab9..acde17fac 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java @@ -29,20 +29,21 @@ import com.plotsquared.core.player.PlotPlayer; import com.plotsquared.core.plot.Plot; import com.plotsquared.core.plot.flag.GlobalFlagContainer; import com.plotsquared.core.plot.flag.PlotFlag; -import org.jetbrains.annotations.NotNull; + +import javax.annotation.Nonnull; public final class PlotFlagPlaceholder extends PlotSpecificPlaceholder { private final PlotFlag flag; private final boolean local; - public PlotFlagPlaceholder(@NotNull final PlotFlag flag, final boolean local) { + public PlotFlagPlaceholder(@Nonnull final PlotFlag flag, final boolean local) { super(String.format("currentplot_%sflag_%s", local ? "local": "", flag.getName())); this.flag = flag; this.local = local; } - @Override @NotNull public String getValue(@NotNull final PlotPlayer player, @NotNull final Plot plot) { + @Override @Nonnull public String getValue(@Nonnull final PlotPlayer player, @Nonnull final Plot plot) { return this.getFlagValue(plot, this.flag.getName(), !this.local); } @@ -57,7 +58,7 @@ public final class PlotFlagPlaceholder extends PlotSpecificPlaceholder { * @param inherit Define if it returns only the flag set on the current plot or also inherited flags * @return The value of flag serialized in string */ - @NotNull private String getFlagValue(@NotNull final Plot plot, @NotNull final String flagName, final boolean inherit) { + @Nonnull private String getFlagValue(@Nonnull final Plot plot, @Nonnull final String flagName, final boolean inherit) { if (flagName.isEmpty()) { return ""; } diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java index 6a19e86fb..c7dc029b8 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java @@ -27,18 +27,19 @@ package com.plotsquared.core.util.placeholders; import com.plotsquared.core.player.PlotPlayer; import com.plotsquared.core.plot.Plot; -import org.jetbrains.annotations.NotNull; + +import javax.annotation.Nonnull; /** * A {@link Placeholder placeholder} that requires a {@link com.plotsquared.core.plot.Plot plot} */ public abstract class PlotSpecificPlaceholder extends Placeholder { - public PlotSpecificPlaceholder(@NotNull final String key) { + public PlotSpecificPlaceholder(@Nonnull final String key) { super(key); } - @Override @NotNull public final String getValue(@NotNull final PlotPlayer player) { + @Override @Nonnull public final String getValue(@Nonnull final PlotPlayer player) { final Plot plot = player.getCurrentPlot(); if (plot == null) { return ""; @@ -53,7 +54,7 @@ public abstract class PlotSpecificPlaceholder extends Placeholder { * @param plot Plot that the player is in * @return Placeholder value, or {@code ""} if the placeholder does not apply */ - @NotNull public abstract String getValue(@NotNull final PlotPlayer player, - @NotNull final Plot plot); + @Nonnull public abstract String getValue(@Nonnull final PlotPlayer player, + @Nonnull final Plot plot); } diff --git a/build.gradle b/build.gradle index 3ca0cf1ba..f4707156a 100644 --- a/build.gradle +++ b/build.gradle @@ -14,7 +14,6 @@ buildscript { configurations.all { resolutionStrategy { force("org.ow2.asm:asm:8.0.1") - force("org.jetbrains:annotations:20.1.0") } } } @@ -96,7 +95,6 @@ subprojects { subproject -> resolutionStrategy { force("junit:junit:4.12") force("com.google.guava:guava:21.0") - force("org.jetbrains:annotations:20.1.0") force("com.google.code.findbugs:jsr305:3.0.2") } } From 4e835ed3ffad9e981c3bfbb769c758aeb356959f Mon Sep 17 00:00:00 2001 From: Hannes Greule Date: Sun, 20 Sep 2020 00:51:54 +0200 Subject: [PATCH 03/35] Add missing command description --- Core/src/main/resources/lang/messages_en.json | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/src/main/resources/lang/messages_en.json b/Core/src/main/resources/lang/messages_en.json index b625a0d79..6229c9752 100644 --- a/Core/src/main/resources/lang/messages_en.json +++ b/Core/src/main/resources/lang/messages_en.json @@ -670,6 +670,7 @@ "commands.description.comment": "Comment on a plot.", "commands.description.condense": "Condense a plotworld.", "commands.description.confirm": "Confirm an action.", + "commands.description.continue": "Continue a plot that was previously marked as done.", "commands.description.copy": "Copy a plot.", "commands.description.createroadschematic": "Add a road schematic to your world using the roads around your current plot.", "commands.description.database": "Convert/Backup Storage.", From ff83931a3fb0fc31b0f45649959e60cc1ee395b6 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Sun, 20 Sep 2020 19:42:13 +0100 Subject: [PATCH 04/35] Fix plot grant --- .../main/java/com/plotsquared/core/command/Grant.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/command/Grant.java b/Core/src/main/java/com/plotsquared/core/command/Grant.java index 2d41da2e3..dd4add2c9 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Grant.java +++ b/Core/src/main/java/com/plotsquared/core/command/Grant.java @@ -36,6 +36,7 @@ import com.plotsquared.core.util.Permissions; import com.plotsquared.core.util.task.RunnableVal; import com.plotsquared.core.util.task.RunnableVal2; import com.plotsquared.core.util.task.RunnableVal3; +import com.plotsquared.core.uuid.UUIDMapping; import java.util.UUID; import java.util.concurrent.CompletableFuture; @@ -76,8 +77,8 @@ public class Grant extends Command { } else if (throwable != null || uuids.size() != 1) { MainUtil.sendMessage(player, Captions.INVALID_PLAYER); } else { - final UUID uuid = uuids.toArray(new UUID[0])[0]; - MainUtil.getPersistentMeta(uuid, + final UUIDMapping uuid = uuids.toArray(new UUIDMapping[0])[0]; + MainUtil.getPersistentMeta(uuid.getUuid(), "grantedPlots", new RunnableVal() { @Override public void run(byte[] array) { if (arg0.equals("check")) { // check @@ -99,11 +100,11 @@ public class Grant extends Command { String key = "grantedPlots"; byte[] rawData = Ints.toByteArray(amount); - PlotPlayer online = PlotSquared.imp().getPlayerManager().getPlayerIfExists(uuid); + PlotPlayer online = PlotSquared.imp().getPlayerManager().getPlayerIfExists(uuid.getUuid()); if (online != null) { online.setPersistentMeta(key, rawData); } else { - DBFunc.addPersistentMeta(uuid, key, rawData, replace); + DBFunc.addPersistentMeta(uuid.getUuid(), key, rawData, replace); } } } From 8c4bb4140a3f288f311c49d50fc95d4d7b48328c Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Sun, 20 Sep 2020 19:51:54 +0100 Subject: [PATCH 05/35] 5.13.6 --- Bukkit/pom.xml | 2 +- build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Bukkit/pom.xml b/Bukkit/pom.xml index 5d2f060bc..32c8c96e8 100644 --- a/Bukkit/pom.xml +++ b/Bukkit/pom.xml @@ -21,7 +21,7 @@ com.plotsquared PlotSquared-Core - 5.13.5 + 5.13.6 compile diff --git a/build.gradle b/build.gradle index c55f5f6e8..0c34173a8 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext { git = Grgit.open(dir: new File(rootDir.toString() + "/.git")) } -def ver = "5.13.5" +def ver = "5.13.6" def versuffix = "" ext { if (project.hasProperty("versionsuffix")) { From 89318be5f497ed977969579e3ab5048882270a36 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Tue, 29 Sep 2020 15:53:23 +0100 Subject: [PATCH 06/35] Apply e2f9b4245b9f7168fc38d9cb10cd05efcb42fe05 to paper listener too --- .../plotsquared/bukkit/listener/PaperListener.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java index e3995d9df..9b676c7b4 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java @@ -221,19 +221,22 @@ public class PaperListener implements Listener { } Plot plot = location.getOwnedPlotAbs(); if (plot == null) { + EntityType type = event.getType(); if (!area.isMobSpawning()) { - EntityType type = event.getType(); switch (type) { case DROPPED_ITEM: if (Settings.Enabled_Components.KILL_ROAD_ITEMS) { - event.setShouldAbortSpawn(true); event.setCancelled(true); - break; + return; } case PLAYER: return; } - event.setShouldAbortSpawn(true); + if (type.isAlive()) { + event.setCancelled(true); + } + } + if (!area.isMiscSpawnUnowned() && !type.isAlive()) { event.setCancelled(true); } return; From 2f5ce6715430c08d43434767ac53214a66819bb6 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Tue, 29 Sep 2020 15:55:08 +0100 Subject: [PATCH 07/35] add back setShouldAbortSpawn --- .../java/com/plotsquared/bukkit/listener/PaperListener.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java index 9b676c7b4..0413802e7 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java @@ -226,6 +226,7 @@ public class PaperListener implements Listener { switch (type) { case DROPPED_ITEM: if (Settings.Enabled_Components.KILL_ROAD_ITEMS) { + event.setShouldAbortSpawn(true); event.setCancelled(true); return; } @@ -233,10 +234,12 @@ public class PaperListener implements Listener { return; } if (type.isAlive()) { + event.setShouldAbortSpawn(true); event.setCancelled(true); } } if (!area.isMiscSpawnUnowned() && !type.isAlive()) { + event.setShouldAbortSpawn(true); event.setCancelled(true); } return; From 95f509d33781ede09a266babb7e764bff93d0498 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Fri, 2 Oct 2020 15:08:14 +0100 Subject: [PATCH 08/35] Stop forcing loiwercase world names --- .../main/java/com/plotsquared/core/setup/CommonSetupSteps.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java b/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java index 0a8c7ba9a..f2ff58dd2 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java +++ b/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java @@ -282,7 +282,7 @@ public enum CommonSetupSteps implements SetupStep { private static boolean isValidWorldName(String s) { return s.chars().allMatch((i) -> { - return i == 95 || i == 45 || i >= 97 && i <= 122 || i >= 48 && i <= 57 || i == 46; + return i == 95 || i == 45 || i >= 97 && i <= 122 || i >= 65 && i <= 90 || i >= 48 && i <= 57 || i == 46; }); } } From 81d0bf6f047e2c774c4b3c7a3b8c2263d466fb7f Mon Sep 17 00:00:00 2001 From: Hannes Greule Date: Sat, 3 Oct 2020 21:53:58 +0200 Subject: [PATCH 09/35] Prevent blocks from getting waterlogged In some cases, the PlayerInteractEvent doesn't cancel right clicks on blocks that can be waterlogged --- .../bukkit/listener/PlayerEventListener.java | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java index 8392591b5..c5bcfd8c9 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java @@ -82,6 +82,7 @@ import org.bukkit.FluidCollisionMode; import org.bukkit.Material; import org.bukkit.block.Block; import org.bukkit.block.BlockFace; +import org.bukkit.block.data.Waterlogged; import org.bukkit.command.PluginCommand; import org.bukkit.entity.ArmorStand; import org.bukkit.entity.Entity; @@ -1070,9 +1071,16 @@ public class PlayerEventListener extends PlotListener implements Listener { @EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true) public void onBucketEmpty(PlayerBucketEmptyEvent event) { BlockFace bf = event.getBlockFace(); - Block block = - event.getBlockClicked().getLocation().add(bf.getModX(), bf.getModY(), bf.getModZ()) - .getBlock(); + final Block block; + // if the block can be waterlogged, the event might waterlog the block + // sometimes + if (event.getBlockClicked().getBlockData() instanceof Waterlogged) { + block = event.getBlockClicked(); + } else { + block = event.getBlockClicked().getLocation() + .add(bf.getModX(), bf.getModY(), bf.getModZ()) + .getBlock(); + } Location location = BukkitUtil.getLocation(block.getLocation()); PlotArea area = location.getPlotArea(); if (area == null) { From 6e2f738d8634b6d529e69d7d936c4a1528a6766a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20S=C3=B6derberg?= Date: Sun, 4 Oct 2020 13:23:11 +0200 Subject: [PATCH 10/35] Stop relying on maxim's repo as it's very unreliable. --- Bukkit/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Bukkit/build.gradle b/Bukkit/build.gradle index 4fa93fbb6..54645acad 100644 --- a/Bukkit/build.gradle +++ b/Bukkit/build.gradle @@ -12,6 +12,7 @@ repositories { url = "https://papermc.io/repo/repository/maven-public/" } maven { url = "https://ci.ender.zone/plugin/repository/everything/" } + maven { url = "https://mvn.intellectualsites.com/content/repositories/releases" } maven { url = "https://mvn.intellectualsites.com/content/repositories/snapshots" } maven { url = "https://repo.wea-ondara.net/repository/public/" } maven { url = "http://repo.mvdw-software.be/content/groups/public/" } @@ -27,7 +28,6 @@ dependencies { implementation("org.spigotmc:spigot-api:1.16.2-R0.1-SNAPSHOT") compile(group: "com.sk89q.worldedit", name: "worldedit-bukkit", version: "7.2.0-SNAPSHOT") { exclude(module: "bukkit") - } compile("io.papermc:paperlib:1.0.4") implementation("net.kyori:text-adapter-bukkit:3.0.3") @@ -42,7 +42,7 @@ dependencies { implementation("net.alpenblock:BungeePerms:4.0-dev-106") compile("se.hyperver.hyperverse:Core:0.6.0-SNAPSHOT"){ transitive = false } compile('com.sk89q:squirrelid:1.0.0-SNAPSHOT'){ transitive = false } - compile('be.maximvdw:MVdWPlaceholderAPI:3.1.1-SNAPSHOT'){ transitive = false } + compile('be.maximvdw:MVdWPlaceholderAPI:3.1.1'){ transitive = false } } sourceCompatibility = 1.8 From 56e6922279d1571f02e73bfdaed49287cf1aaad4 Mon Sep 17 00:00:00 2001 From: Aurora Date: Sun, 4 Oct 2020 13:10:32 +0200 Subject: [PATCH 11/35] Remove BungeePerms UUID fetcher --- Bukkit/build.gradle | 2 - Bukkit/pom.xml | 6 -- .../com/plotsquared/bukkit/BukkitMain.java | 15 ---- .../bukkit/uuid/BungeePermsUUIDService.java | 85 ------------------- 4 files changed, 108 deletions(-) delete mode 100644 Bukkit/src/main/java/com/plotsquared/bukkit/uuid/BungeePermsUUIDService.java diff --git a/Bukkit/build.gradle b/Bukkit/build.gradle index 54645acad..b0c628c5c 100644 --- a/Bukkit/build.gradle +++ b/Bukkit/build.gradle @@ -14,7 +14,6 @@ repositories { maven { url = "https://ci.ender.zone/plugin/repository/everything/" } maven { url = "https://mvn.intellectualsites.com/content/repositories/releases" } maven { url = "https://mvn.intellectualsites.com/content/repositories/snapshots" } - maven { url = "https://repo.wea-ondara.net/repository/public/" } maven { url = "http://repo.mvdw-software.be/content/groups/public/" } mavenLocal() } @@ -39,7 +38,6 @@ dependencies { implementation("net.ess3:EssentialsX:2.18.0") { exclude(group: "io.papermc", module: "paperlib") } - implementation("net.alpenblock:BungeePerms:4.0-dev-106") compile("se.hyperver.hyperverse:Core:0.6.0-SNAPSHOT"){ transitive = false } compile('com.sk89q:squirrelid:1.0.0-SNAPSHOT'){ transitive = false } compile('be.maximvdw:MVdWPlaceholderAPI:3.1.1'){ transitive = false } diff --git a/Bukkit/pom.xml b/Bukkit/pom.xml index 32c8c96e8..04de1ebca 100644 --- a/Bukkit/pom.xml +++ b/Bukkit/pom.xml @@ -182,12 +182,6 @@ - - net.alpenblock - BungeePerms - 4.0-dev-106 - runtime - junit junit diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java index 4f149d126..e3f9f05da 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java @@ -58,7 +58,6 @@ import com.plotsquared.bukkit.util.BukkitTaskManager; import com.plotsquared.bukkit.util.BukkitUtil; import com.plotsquared.bukkit.util.SetGenCB; import com.plotsquared.bukkit.util.UpdateUtility; -import com.plotsquared.bukkit.uuid.BungeePermsUUIDService; import com.plotsquared.bukkit.uuid.EssentialsUUIDService; import com.plotsquared.bukkit.uuid.LuckPermsUUIDService; import com.plotsquared.bukkit.uuid.OfflinePlayerUUIDService; @@ -291,16 +290,6 @@ public final class BukkitMain extends JavaPlugin implements Listener, IPlotMain< luckPermsUUIDService = null; } - final BungeePermsUUIDService bungeePermsUUIDService; - if (Settings.UUID.SERVICE_BUNGEE_PERMS && - Bukkit.getPluginManager().getPlugin("BungeePerms") != null) { - bungeePermsUUIDService = new BungeePermsUUIDService(); - PlotSquared - .log(Captions.PREFIX + "(UUID) Using BungeePerms as a complementary UUID service"); - } else { - bungeePermsUUIDService = null; - } - final EssentialsUUIDService essentialsUUIDService; if (Settings.UUID.SERVICE_ESSENTIALSX && Bukkit.getPluginManager().getPlugin("Essentials") != null) { essentialsUUIDService = new EssentialsUUIDService(); @@ -335,10 +324,6 @@ public final class BukkitMain extends JavaPlugin implements Listener, IPlotMain< impromptuPipeline.registerService(luckPermsUUIDService); backgroundPipeline.registerService(luckPermsUUIDService); } - if (bungeePermsUUIDService != null) { - impromptuPipeline.registerService(bungeePermsUUIDService); - backgroundPipeline.registerService(bungeePermsUUIDService); - } if (essentialsUUIDService != null) { impromptuPipeline.registerService(essentialsUUIDService); backgroundPipeline.registerService(essentialsUUIDService); diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/BungeePermsUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/BungeePermsUUIDService.java deleted file mode 100644 index 4de1bdb92..000000000 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/BungeePermsUUIDService.java +++ /dev/null @@ -1,85 +0,0 @@ -/* - * _____ _ _ _____ _ - * | __ \| | | | / ____| | | - * | |__) | | ___ | |_| (___ __ _ _ _ __ _ _ __ ___ __| | - * | ___/| |/ _ \| __|\___ \ / _` | | | |/ _` | '__/ _ \/ _` | - * | | | | (_) | |_ ____) | (_| | |_| | (_| | | | __/ (_| | - * |_| |_|\___/ \__|_____/ \__, |\__,_|\__,_|_| \___|\__,_| - * | | - * |_| - * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ -package com.plotsquared.bukkit.uuid; - -import com.plotsquared.core.uuid.UUIDMapping; -import com.plotsquared.core.uuid.UUIDService; -import net.luckperms.api.model.user.UserManager; -import org.bukkit.Bukkit; -import org.bukkit.plugin.RegisteredServiceProvider; -import org.jetbrains.annotations.NotNull; - -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; -import net.alpenblock.bungeeperms.BungeePerms; -import net.alpenblock.bungeeperms.io.UUIDPlayerDB; - -/** - * UUID service that uses the BungeePerms API - */ -public class BungeePermsUUIDService implements UUIDService { - - private final BungeePerms bp; - - public BungeePermsUUIDService() { - final RegisteredServiceProvider provider = Bukkit.getServicesManager().getRegistration(BungeePerms.class); - if (provider != null) { - this.bp = provider.getProvider(); - } else { - throw new IllegalStateException("BungeePerms is not available"); - } - } - - @Override @NotNull public List getNames(@NotNull final List uuids) { - final List mappings = new ArrayList<>(uuids.size()); - final UUIDPlayerDB uuiddb = BungeePerms.getInstance().getPermissionsManager().getUUIDPlayerDB(); - for (final UUID uuid : uuids) { - try { - final String username = uuiddb.getPlayerName(uuid); - if (username != null) { - mappings.add(new UUIDMapping(uuid, username)); - } - } catch (final Exception ignored) {} - } - return mappings; - } - - @Override @NotNull public List getUUIDs(@NotNull final List usernames) { - final List mappings = new ArrayList<>(usernames.size()); - final UUIDPlayerDB uuiddb = BungeePerms.getInstance().getPermissionsManager().getUUIDPlayerDB(); - for (final String username : usernames) { - try { - final UUID uuid = uuiddb.getUUID(username); - if (username != null) { - mappings.add(new UUIDMapping(uuid, username)); - } - } catch (final Exception ignored) {} - } - return mappings; - } - -} From e6237d68d0c7da55654f59ec32c45b6c2178de5d Mon Sep 17 00:00:00 2001 From: Aurora Date: Sun, 4 Oct 2020 13:12:47 +0200 Subject: [PATCH 12/35] Also remove BungeePerms from the config --- .../main/java/com/plotsquared/core/configuration/Settings.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java index 81ac560bf..9e98808c2 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java @@ -268,8 +268,6 @@ public class Settings extends Config { public static boolean SERVICE_BUKKIT = true; @Comment("Whether the EssentialsX service is enabled") public static boolean SERVICE_ESSENTIALSX = true; - @Comment("Whether the BungeePerms service is enabled") - public static boolean SERVICE_BUNGEE_PERMS = true; } From a210f523a5a74e42725e6a928ef9b7df658b926f Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Sun, 4 Oct 2020 18:19:29 +0200 Subject: [PATCH 13/35] Add more information to debugpaste --- Bukkit/pom.xml | 2 +- .../com/plotsquared/bukkit/BukkitMain.java | 21 +++++++++++------ .../java/com/plotsquared/core/IPlotMain.java | 2 +- .../plotsquared/core/command/DebugPaste.java | 23 +++++++------------ 4 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Bukkit/pom.xml b/Bukkit/pom.xml index 04de1ebca..7c288d6da 100644 --- a/Bukkit/pom.xml +++ b/Bukkit/pom.xml @@ -87,7 +87,7 @@ be.maximvdw MVdWPlaceholderAPI - 3.1.1-SNAPSHOT + 3.1.1 compile diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java index e3f9f05da..c28c38995 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitMain.java @@ -1149,14 +1149,21 @@ public final class BukkitMain extends JavaPlugin implements Listener, IPlotMain< return new BukkitPlotGenerator(world, generator); } - @Override public List, Boolean>> getPluginIds() { - List, Boolean>> names = new ArrayList<>(); - for (final Plugin plugin : Bukkit.getPluginManager().getPlugins()) { - Map.Entry id = new AbstractMap.SimpleEntry<>(plugin.getName(), - plugin.getDescription().getVersion()); - names.add(new AbstractMap.SimpleEntry<>(id, plugin.isEnabled())); + @Override public String getPluginList() { + StringBuilder msg = new StringBuilder(); + Plugin[] plugins = Bukkit.getServer().getPluginManager().getPlugins(); + msg.append("Plugins (").append(plugins.length).append("): \n"); + for (Plugin p : plugins) { + msg.append(" - ").append(p.getName()).append(":").append("\n") + .append(" • Version: ").append(p.getDescription().getVersion()).append("\n") + .append(" • Enabled: ").append(p.isEnabled()).append("\n") + .append(" • Main: ").append(p.getDescription().getMain()).append("\n") + .append(" • Authors: ").append(p.getDescription().getAuthors()).append("\n") + .append(" • Load Before: ").append(p.getDescription().getLoadBefore()).append("\n") + .append(" • Dependencies: ").append(p.getDescription().getDepend()).append("\n") + .append(" • Soft Dependencies: ").append(p.getDescription().getSoftDepend()).append("\n"); } - return names; + return msg.toString(); } @Override public Actor getConsole() { diff --git a/Core/src/main/java/com/plotsquared/core/IPlotMain.java b/Core/src/main/java/com/plotsquared/core/IPlotMain.java index 190457ef3..2ac8910f3 100644 --- a/Core/src/main/java/com/plotsquared/core/IPlotMain.java +++ b/Core/src/main/java/com/plotsquared/core/IPlotMain.java @@ -282,7 +282,7 @@ public interface IPlotMain

extends ILogger { */ @NotNull IndependentPlotGenerator getDefaultGenerator(); - List, Boolean>> getPluginIds(); + String getPluginList(); Actor getConsole(); diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java b/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java index 299f6ddfa..3928b9fff 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java @@ -91,28 +91,21 @@ public class DebugPaste extends SubCommand { .append("\n"); b.append("online_mode: ").append(!Settings.UUID.OFFLINE).append(';') .append(!Settings.UUID.OFFLINE).append('\n'); - b.append("Plugins:"); - for (Map.Entry, Boolean> pluginInfo : PlotSquared - .get().IMP.getPluginIds()) { - Map.Entry nameVersion = pluginInfo.getKey(); - String name = nameVersion.getKey(); - String version = nameVersion.getValue(); - boolean enabled = pluginInfo.getValue(); - b.append("\n ").append(name).append(":\n ").append("version: '") - .append(version).append('\'').append("\n enabled: ").append(enabled); - } + b.append(PlotSquared.get().IMP.getPluginList()); b.append("\n\n# YAY! Now, let's see what we can find in your JVM\n"); Runtime runtime = Runtime.getRuntime(); RuntimeMXBean rb = ManagementFactory.getRuntimeMXBean(); - b.append("Uptime: ").append( - TimeUnit.MINUTES.convert(rb.getUptime(), TimeUnit.MILLISECONDS) + " minutes") + b.append("Uptime: ") + .append(TimeUnit.MINUTES.convert(rb.getUptime(), TimeUnit.MILLISECONDS)) + .append(" minutes") .append('\n'); b.append("JVM Flags: ").append(rb.getInputArguments()).append('\n'); - b.append("Free Memory: ").append(runtime.freeMemory() / 1024 / 1024 + " MB") + b.append("Free Memory: ").append(runtime.freeMemory() / 1024 / 1024).append(" MB") .append('\n'); - b.append("Max Memory: ").append(runtime.maxMemory() / 1024 / 1024 + " MB") + b.append("Max Memory: ").append(runtime.maxMemory() / 1024 / 1024).append(" MB") + .append('\n'); + b.append("Total Memory: ").append(runtime.totalMemory() / 1024 / 1024).append(" MB") .append('\n'); - b.append("Total Memory: ").append(runtime.totalMemory() / 1024 / 1024 + " MB").append('\n'); b.append("Available Processors: ").append(runtime.availableProcessors()).append('\n'); b.append("Java Name: ").append(rb.getVmName()).append('\n'); b.append("Java Version: '").append(System.getProperty("java.version")) From b55d836871b9a3ddae678ed29c3c32b5bb62d9a8 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Wed, 7 Oct 2020 11:59:44 +0100 Subject: [PATCH 14/35] 5.13.7 --- Bukkit/pom.xml | 2 +- build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Bukkit/pom.xml b/Bukkit/pom.xml index 7c288d6da..a9cf4c54f 100644 --- a/Bukkit/pom.xml +++ b/Bukkit/pom.xml @@ -21,7 +21,7 @@ com.plotsquared PlotSquared-Core - 5.13.6 + 5.13.7 compile diff --git a/build.gradle b/build.gradle index 0c34173a8..2f0fb1056 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ ext { git = Grgit.open(dir: new File(rootDir.toString() + "/.git")) } -def ver = "5.13.6" +def ver = "5.13.7" def versuffix = "" ext { if (project.hasProperty("versionsuffix")) { From ec23fcdd7509ffed9b31672d8745b2f8ed2f719e Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Sun, 20 Sep 2020 22:42:13 +0200 Subject: [PATCH 15/35] Rewrite build scripts Co-Authored By: Mariell Hoversholm --- .gitignore | 8 - Bukkit/build.gradle | 152 -------------- Bukkit/build.gradle.kts | 117 +++++++++++ Bukkit/pom.xml | 198 ------------------ .../com/plotsquared/bukkit/BukkitCommand.java | 1 + .../plotsquared/bukkit/BukkitPlatform.java | 1 + .../bukkit/entity/AgeableStats.java | 1 + .../bukkit/entity/ArmorStandStats.java | 1 + .../bukkit/entity/EntityBaseStats.java | 1 + .../bukkit/entity/EntityWrapper.java | 1 + .../plotsquared/bukkit/entity/HorseStats.java | 1 + .../bukkit/entity/LivingEntityStats.java | 1 + .../entity/ReplicatingEntityWrapper.java | 1 + .../bukkit/entity/TameableStats.java | 1 + .../bukkit/entity/TeleportEntityWrapper.java | 1 + .../bukkit/generator/BlockStatePopulator.java | 1 + .../generator/BukkitAugmentedGenerator.java | 1 + .../bukkit/generator/BukkitPlotGenerator.java | 1 + .../generator/DelegatePlotGenerator.java | 1 + .../bukkit/inject/BackupModule.java | 1 + .../bukkit/inject/BukkitModule.java | 1 + .../bukkit/inject/PermissionModule.java | 1 + .../bukkit/inject/WorldManagerModule.java | 1 + .../bukkit/listener/BlockEventListener.java | 1 + .../bukkit/listener/ChunkListener.java | 1 + .../bukkit/listener/EntityEventListener.java | 1 + .../bukkit/listener/EntitySpawnListener.java | 1 + .../bukkit/listener/ForceFieldListener.java | 1 + .../bukkit/listener/PaperListener.java | 1 + .../bukkit/listener/PaperListener113.java | 1 + .../bukkit/listener/PlayerEventListener.java | 1 + .../listener/ProjectileEventListener.java | 1 + .../bukkit/listener/ServerListener.java | 1 + .../bukkit/listener/SingleWorldListener.java | 1 + .../bukkit/listener/WorldEvents.java | 1 + .../bukkit/managers/BukkitWorldManager.java | 1 + .../managers/HyperverseWorldManager.java | 1 + .../managers/MultiverseWorldManager.java | 1 + .../permissions/BukkitPermissionHandler.java | 1 + .../permissions/VaultPermissionHandler.java | 1 + .../bukkit/placeholder/MVdWPlaceholders.java | 1 + .../bukkit/placeholder/PAPIPlaceholders.java | 1 + .../placeholder/PlaceholderFormatter.java | 1 + .../bukkit/player/BukkitOfflinePlayer.java | 1 + .../bukkit/player/BukkitPlayer.java | 1 + .../bukkit/player/BukkitPlayerManager.java | 1 + .../bukkit/queue/BukkitChunkCoordinator.java | 1 + .../bukkit/queue/BukkitQueueCoordinator.java | 1 + .../bukkit/queue/ChunkCoordinator.java | 1 + .../plotsquared/bukkit/queue/GenChunk.java | 1 + .../schematic/BukkitSchematicHandler.java | 1 + .../bukkit/schematic/StateWrapper.java | 1 + .../bukkit/util/BukkitBlockUtil.java | 1 + .../bukkit/util/BukkitChunkManager.java | 1 + .../bukkit/util/BukkitEconHandler.java | 1 + .../bukkit/util/BukkitEntityUtil.java | 1 + .../bukkit/util/BukkitInventoryUtil.java | 1 + .../bukkit/util/BukkitRegionManager.java | 1 + .../bukkit/util/BukkitSetupUtils.java | 1 + .../plotsquared/bukkit/util/BukkitUtil.java | 1 + .../plotsquared/bukkit/util/BukkitWorld.java | 1 + .../plotsquared/bukkit/util/ContentMap.java | 1 + .../com/plotsquared/bukkit/util/SetGenCB.java | 1 + .../bukkit/util/UpdateUtility.java | 1 + .../util/task/BukkitPlotSquaredTask.java | 1 + .../bukkit/util/task/BukkitTaskManager.java | 1 + .../bukkit/util/task/PaperTimeConverter.java | 1 + .../bukkit/util/task/SpigotTimeConverter.java | 1 + .../bukkit/uuid/BungeePermsUUIDService.java | 1 + .../bukkit/uuid/EssentialsUUIDService.java | 1 + .../bukkit/uuid/LuckPermsUUIDService.java | 1 + .../bukkit/uuid/OfflinePlayerUUIDService.java | 1 + .../bukkit/uuid/PaperUUIDService.java | 1 + .../bukkit/uuid/SQLiteUUIDService.java | 1 + .../bukkit/uuid/SquirrelIdUUIDService.java | 1 + Bukkit/src/main/resources/plugin.yml | 2 +- Core/build.gradle | 101 --------- Core/build.gradle.kts | 30 +++ Core/pom.xml | 132 ------------ .../java/com/plotsquared/core/Platform.java | 1 + .../java/com/plotsquared/core/PlotAPI.java | 1 + .../com/plotsquared/core/PlotPlatform.java | 1 + .../com/plotsquared/core/PlotSquared.java | 1 + .../com/plotsquared/core/PlotVersion.java | 1 + .../com/plotsquared/core/backup/Backup.java | 1 + .../core/backup/BackupManager.java | 1 + .../core/backup/BackupProfile.java | 1 + .../core/backup/NullBackupManager.java | 1 + .../core/backup/NullBackupProfile.java | 1 + .../core/backup/PlayerBackupProfile.java | 1 + .../core/backup/SimpleBackupManager.java | 1 + .../core/collection/ArrayUtil.java | 1 + .../core/collection/ByteArrayUtilities.java | 1 + .../core/collection/FlatRandomCollection.java | 1 + .../plotsquared/core/collection/QuadMap.java | 1 + .../core/collection/RandomCollection.java | 1 + .../collection/SimpleRandomCollection.java | 1 + .../com/plotsquared/core/command/Add.java | 1 + .../com/plotsquared/core/command/Alias.java | 1 + .../com/plotsquared/core/command/Area.java | 1 + .../plotsquared/core/command/Argument.java | 1 + .../com/plotsquared/core/command/Auto.java | 1 + .../com/plotsquared/core/command/Backup.java | 1 + .../com/plotsquared/core/command/Biome.java | 1 + .../com/plotsquared/core/command/Buy.java | 1 + .../com/plotsquared/core/command/Caps.java | 1 + .../com/plotsquared/core/command/Chat.java | 1 + .../com/plotsquared/core/command/Claim.java | 1 + .../com/plotsquared/core/command/Clear.java | 1 + .../com/plotsquared/core/command/Cluster.java | 1 + .../plotsquared/core/command/CmdConfirm.java | 1 + .../plotsquared/core/command/CmdInstance.java | 1 + .../com/plotsquared/core/command/Command.java | 1 + .../core/command/CommandCaller.java | 1 + .../core/command/CommandCategory.java | 1 + .../core/command/CommandDeclaration.java | 1 + .../com/plotsquared/core/command/Comment.java | 1 + .../plotsquared/core/command/Condense.java | 1 + .../com/plotsquared/core/command/Confirm.java | 1 + .../plotsquared/core/command/Continue.java | 1 + .../com/plotsquared/core/command/Copy.java | 1 + .../core/command/CreateRoadSchematic.java | 1 + .../core/command/DatabaseCommand.java | 1 + .../com/plotsquared/core/command/Debug.java | 1 + .../core/command/DebugAllowUnsafe.java | 1 + .../plotsquared/core/command/DebugExec.java | 1 + .../core/command/DebugImportWorlds.java | 1 + .../core/command/DebugLoadTest.java | 1 + .../plotsquared/core/command/DebugPaste.java | 1 + .../core/command/DebugRoadRegen.java | 1 + .../core/command/DebugSaveTest.java | 1 + .../com/plotsquared/core/command/Delete.java | 1 + .../com/plotsquared/core/command/Deny.java | 1 + .../com/plotsquared/core/command/Desc.java | 1 + .../com/plotsquared/core/command/Dislike.java | 1 + .../com/plotsquared/core/command/Done.java | 1 + .../plotsquared/core/command/Download.java | 1 + .../plotsquared/core/command/FlagCommand.java | 1 + .../com/plotsquared/core/command/Grant.java | 1 + .../com/plotsquared/core/command/Help.java | 1 + .../plotsquared/core/command/HomeCommand.java | 1 + .../com/plotsquared/core/command/Inbox.java | 1 + .../com/plotsquared/core/command/Info.java | 1 + .../com/plotsquared/core/command/Kick.java | 1 + .../com/plotsquared/core/command/Leave.java | 1 + .../com/plotsquared/core/command/Like.java | 1 + .../com/plotsquared/core/command/ListCmd.java | 1 + .../com/plotsquared/core/command/Load.java | 1 + .../plotsquared/core/command/MainCommand.java | 1 + .../com/plotsquared/core/command/Merge.java | 1 + .../com/plotsquared/core/command/Middle.java | 1 + .../com/plotsquared/core/command/Move.java | 1 + .../com/plotsquared/core/command/Music.java | 1 + .../com/plotsquared/core/command/Near.java | 1 + .../com/plotsquared/core/command/Owner.java | 1 + .../plotsquared/core/command/PluginCmd.java | 1 + .../com/plotsquared/core/command/Purge.java | 1 + .../com/plotsquared/core/command/Rate.java | 1 + .../core/command/RegenAllRoads.java | 1 + .../com/plotsquared/core/command/Relight.java | 1 + .../com/plotsquared/core/command/Reload.java | 1 + .../com/plotsquared/core/command/Remove.java | 1 + .../core/command/RequiredType.java | 1 + .../com/plotsquared/core/command/Save.java | 1 + .../core/command/SchematicCmd.java | 1 + .../com/plotsquared/core/command/Set.java | 1 + .../plotsquared/core/command/SetCommand.java | 1 + .../com/plotsquared/core/command/SetHome.java | 1 + .../com/plotsquared/core/command/Setup.java | 1 + .../plotsquared/core/command/SubCommand.java | 1 + .../com/plotsquared/core/command/Swap.java | 1 + .../com/plotsquared/core/command/Target.java | 1 + .../plotsquared/core/command/Template.java | 1 + .../com/plotsquared/core/command/Toggle.java | 1 + .../com/plotsquared/core/command/Trim.java | 1 + .../com/plotsquared/core/command/Trust.java | 1 + .../com/plotsquared/core/command/Unlink.java | 1 + .../com/plotsquared/core/command/Visit.java | 1 + .../plotsquared/core/command/WE_Anywhere.java | 1 + .../core/components/ComponentCommand.java | 1 + .../core/components/ComponentPreset.java | 1 + .../components/ComponentPresetManager.java | 1 + .../core/configuration/Config.java | 1 + .../core/configuration/Configuration.java | 1 + .../core/configuration/ConfigurationNode.java | 1 + .../configuration/ConfigurationOptions.java | 1 + .../configuration/ConfigurationSection.java | 1 + .../core/configuration/ConfigurationUtil.java | 1 + .../InvalidConfigurationException.java | 1 + .../configuration/MemoryConfiguration.java | 1 + .../MemoryConfigurationOptions.java | 1 + .../core/configuration/MemorySection.java | 1 + .../core/configuration/Settings.java | 1 + .../core/configuration/Storage.java | 1 + .../core/configuration/caption/Caption.java | 1 + .../configuration/caption/CaptionHolder.java | 1 + .../configuration/caption/CaptionLoader.java | 1 + .../configuration/caption/CaptionMap.java | 1 + .../configuration/caption/CaptionUtility.java | 1 + .../configuration/caption/ChatFormatter.java | 1 + .../caption/DummyCaptionMap.java | 1 + .../configuration/caption/LocaleHolder.java | 1 + .../caption/LocalizedCaptionMap.java | 1 + .../caption/NamespacedCaption.java | 1 + .../caption/PerUserLocaleCaptionMap.java | 1 + .../caption/PlotSquaredChatFormatter.java | 1 + .../configuration/caption/StaticCaption.java | 1 + .../core/configuration/caption/Templates.java | 1 + .../caption/TranslatableCaption.java | 1 + .../configuration/file/FileConfiguration.java | 1 + .../file/FileConfigurationOptions.java | 1 + .../configuration/file/YamlConfiguration.java | 1 + .../file/YamlConfigurationOptions.java | 1 + .../configuration/file/YamlConstructor.java | 1 + .../configuration/file/YamlRepresenter.java | 1 + .../ConfigurationSerializable.java | 1 + .../ConfigurationSerialization.java | 1 + .../DelegateDeserialization.java | 1 + .../serialization/SerializableAs.java | 1 + .../plotsquared/core/database/AbstractDB.java | 1 + .../com/plotsquared/core/database/DBFunc.java | 1 + .../plotsquared/core/database/Database.java | 1 + .../com/plotsquared/core/database/MySQL.java | 1 + .../plotsquared/core/database/SQLManager.java | 1 + .../com/plotsquared/core/database/SQLite.java | 1 + .../plotsquared/core/database/StmtMod.java | 1 + .../core/events/CancellablePlotEvent.java | 1 + .../core/events/PlayerAutoPlotEvent.java | 1 + .../core/events/PlayerClaimPlotEvent.java | 1 + .../core/events/PlayerEnterPlotEvent.java | 1 + .../core/events/PlayerLeavePlotEvent.java | 1 + .../core/events/PlayerPlotDeniedEvent.java | 1 + .../core/events/PlayerPlotHelperEvent.java | 1 + .../core/events/PlayerPlotTrustedEvent.java | 1 + .../events/PlayerTeleportToPlotEvent.java | 1 + .../core/events/PlotAutoMergeEvent.java | 1 + .../core/events/PlotChangeOwnerEvent.java | 1 + .../core/events/PlotClearEvent.java | 1 + .../core/events/PlotComponentSetEvent.java | 1 + .../core/events/PlotDeleteEvent.java | 1 + .../core/events/PlotDoneEvent.java | 1 + .../plotsquared/core/events/PlotEvent.java | 1 + .../core/events/PlotFlagAddEvent.java | 1 + .../core/events/PlotFlagEvent.java | 1 + .../core/events/PlotFlagRemoveEvent.java | 1 + .../core/events/PlotMergeEvent.java | 1 + .../core/events/PlotPlayerEvent.java | 1 + .../core/events/PlotRateEvent.java | 1 + .../core/events/PlotUnlinkEvent.java | 1 + .../com/plotsquared/core/events/Result.java | 1 + .../core/events/TeleportCause.java | 1 + .../core/generator/AugmentedUtils.java | 1 + .../core/generator/ClassicPlotManager.java | 1 + .../ClassicPlotManagerComponent.java | 1 + .../core/generator/ClassicPlotWorld.java | 1 + .../core/generator/GeneratorWrapper.java | 1 + .../core/generator/GridPlotManager.java | 1 + .../core/generator/GridPlotWorld.java | 1 + .../plotsquared/core/generator/HybridGen.java | 1 + .../core/generator/HybridPlotManager.java | 1 + .../core/generator/HybridPlotWorld.java | 1 + .../core/generator/HybridUtils.java | 1 + .../generator/IndependentPlotGenerator.java | 1 + .../core/generator/SingleWorldGenerator.java | 1 + .../core/generator/SquarePlotManager.java | 1 + .../core/generator/SquarePlotWorld.java | 1 + .../annotations/BackgroundPipeline.java | 1 + .../core/inject/annotations/ConfigFile.java | 1 + .../core/inject/annotations/ConsoleActor.java | 1 + .../inject/annotations/DefaultGenerator.java | 1 + .../inject/annotations/ImpromptuPipeline.java | 1 + .../core/inject/annotations/WorldConfig.java | 1 + .../core/inject/annotations/WorldFile.java | 1 + .../ChunkCoordinatorBuilderFactory.java | 1 + .../factory/ChunkCoordinatorFactory.java | 1 + .../factory/HybridPlotWorldFactory.java | 1 + .../factory/PlayerBackupProfileFactory.java | 1 + .../inject/modules/PlotSquaredModule.java | 1 + .../core/listener/ExtentWrapper.java | 1 + .../core/listener/PlayerBlockEventType.java | 1 + .../core/listener/PlotListener.java | 1 + .../core/listener/ProcessedWEExtent.java | 1 + .../plotsquared/core/listener/WEExtent.java | 1 + .../core/listener/WESubscriber.java | 1 + .../plotsquared/core/location/BlockLoc.java | 1 + .../core/location/ChunkWrapper.java | 1 + .../plotsquared/core/location/Direction.java | 1 + .../plotsquared/core/location/Location.java | 1 + .../plotsquared/core/location/PlotLoc.java | 1 + .../com/plotsquared/core/location/World.java | 1 + .../permissions/ConsolePermissionProfile.java | 1 + .../permissions/NullPermissionProfile.java | 1 + .../core/permissions/Permission.java | 1 + .../core/permissions/PermissionHandler.java | 1 + .../core/permissions/PermissionHolder.java | 1 + .../core/permissions/PermissionProfile.java | 1 + .../core/player/ConsolePlayer.java | 1 + .../core/player/MetaDataAccess.java | 1 + .../plotsquared/core/player/MetaDataKey.java | 1 + .../core/player/OfflinePlotPlayer.java | 1 + .../core/player/PersistentMetaDataAccess.java | 1 + .../core/player/PlayerMetaDataKeys.java | 1 + .../plotsquared/core/player/PlotPlayer.java | 1 + .../core/player/TemporaryMetaDataAccess.java | 1 + .../plotsquared/core/plot/BlockBucket.java | 1 + .../java/com/plotsquared/core/plot/Plot.java | 1 + .../com/plotsquared/core/plot/PlotArea.java | 1 + .../core/plot/PlotAreaTerrainType.java | 1 + .../plotsquared/core/plot/PlotAreaType.java | 1 + .../plotsquared/core/plot/PlotCluster.java | 1 + .../core/plot/PlotCommentContainer.java | 1 + .../plotsquared/core/plot/PlotHandler.java | 1 + .../com/plotsquared/core/plot/PlotId.java | 1 + .../plotsquared/core/plot/PlotInventory.java | 1 + .../plotsquared/core/plot/PlotItemStack.java | 1 + .../plotsquared/core/plot/PlotManager.java | 1 + .../core/plot/PlotModificationManager.java | 1 + .../plotsquared/core/plot/PlotSettings.java | 1 + .../plotsquared/core/plot/PlotWeather.java | 1 + .../com/plotsquared/core/plot/PlotWorld.java | 1 + .../com/plotsquared/core/plot/Rating.java | 1 + .../core/plot/comment/CommentInbox.java | 1 + .../core/plot/comment/CommentManager.java | 1 + .../core/plot/comment/InboxOwner.java | 1 + .../core/plot/comment/InboxPublic.java | 1 + .../core/plot/comment/InboxReport.java | 1 + .../core/plot/comment/PlotComment.java | 1 + .../core/plot/expiration/ExpireManager.java | 1 + .../core/plot/expiration/ExpiryTask.java | 1 + .../core/plot/expiration/PlotAnalysis.java | 1 + .../core/plot/flag/FlagContainer.java | 1 + .../core/plot/flag/FlagParseException.java | 1 + .../core/plot/flag/GlobalFlagContainer.java | 1 + .../core/plot/flag/InternalFlag.java | 1 + .../plotsquared/core/plot/flag/PlotFlag.java | 1 + .../flag/implementations/AnalysisFlag.java | 1 + .../implementations/AnimalAttackFlag.java | 1 + .../flag/implementations/AnimalCapFlag.java | 1 + .../implementations/AnimalInteractFlag.java | 1 + .../flag/implementations/BlockBurnFlag.java | 1 + .../implementations/BlockIgnitionFlag.java | 1 + .../flag/implementations/BlockedCmdsFlag.java | 1 + .../plot/flag/implementations/BreakFlag.java | 1 + .../plot/flag/implementations/ChatFlag.java | 1 + .../flag/implementations/CoralDryFlag.java | 1 + .../flag/implementations/DenyExitFlag.java | 1 + .../implementations/DenyTeleportFlag.java | 1 + .../flag/implementations/DescriptionFlag.java | 1 + .../implementations/DeviceInteractFlag.java | 1 + .../implementations/DisablePhysicsFlag.java | 1 + .../plot/flag/implementations/DoneFlag.java | 1 + .../implementations/DropProtectionFlag.java | 1 + .../flag/implementations/EntityCapFlag.java | 1 + .../flag/implementations/ExplosionFlag.java | 1 + .../flag/implementations/FarewellFlag.java | 1 + .../plot/flag/implementations/FeedFlag.java | 1 + .../plot/flag/implementations/FlyFlag.java | 1 + .../flag/implementations/ForcefieldFlag.java | 1 + .../flag/implementations/GamemodeFlag.java | 1 + .../flag/implementations/GrassGrowFlag.java | 1 + .../flag/implementations/GreetingFlag.java | 1 + .../implementations/GuestGamemodeFlag.java | 1 + .../implementations/HangingBreakFlag.java | 1 + .../implementations/HangingPlaceFlag.java | 1 + .../plot/flag/implementations/HealFlag.java | 1 + .../flag/implementations/HideInfoFlag.java | 1 + .../implementations/HostileAttackFlag.java | 1 + .../flag/implementations/HostileCapFlag.java | 1 + .../implementations/HostileInteractFlag.java | 1 + .../flag/implementations/IceFormFlag.java | 1 + .../flag/implementations/IceMeltFlag.java | 1 + .../flag/implementations/InstabreakFlag.java | 1 + .../flag/implementations/InvincibleFlag.java | 1 + .../flag/implementations/ItemDropFlag.java | 1 + .../plot/flag/implementations/KeepFlag.java | 1 + .../implementations/KeepInventoryFlag.java | 1 + .../flag/implementations/KelpGrowFlag.java | 1 + .../flag/implementations/LiquidFlowFlag.java | 1 + .../flag/implementations/MiscBreakFlag.java | 1 + .../flag/implementations/MiscCapFlag.java | 1 + .../implementations/MiscInteractFlag.java | 1 + .../flag/implementations/MiscPlaceFlag.java | 1 + .../flag/implementations/MobBreakFlag.java | 1 + .../plot/flag/implementations/MobCapFlag.java | 1 + .../flag/implementations/MobPlaceFlag.java | 1 + .../plot/flag/implementations/MusicFlag.java | 1 + .../flag/implementations/MycelGrowFlag.java | 1 + .../flag/implementations/NoWorldeditFlag.java | 1 + .../flag/implementations/NotifyEnterFlag.java | 1 + .../flag/implementations/NotifyLeaveFlag.java | 1 + .../plot/flag/implementations/PlaceFlag.java | 1 + .../implementations/PlayerInteractFlag.java | 1 + .../PreventCreativeCopyFlag.java | 1 + .../plot/flag/implementations/PriceFlag.java | 1 + .../plot/flag/implementations/PveFlag.java | 1 + .../plot/flag/implementations/PvpFlag.java | 1 + .../flag/implementations/RedstoneFlag.java | 1 + .../flag/implementations/ServerPlotFlag.java | 1 + .../flag/implementations/SnowFormFlag.java | 1 + .../flag/implementations/SnowMeltFlag.java | 1 + .../flag/implementations/SoilDryFlag.java | 1 + .../flag/implementations/TamedAttackFlag.java | 1 + .../implementations/TamedInteractFlag.java | 1 + .../plot/flag/implementations/TimeFlag.java | 1 + .../plot/flag/implementations/TitlesFlag.java | 1 + .../implementations/UntrustedVisitFlag.java | 1 + .../plot/flag/implementations/UseFlag.java | 1 + .../implementations/VehicleBreakFlag.java | 1 + .../flag/implementations/VehicleCapFlag.java | 1 + .../implementations/VehiclePlaceFlag.java | 1 + .../flag/implementations/VehicleUseFlag.java | 1 + .../implementations/VillagerInteractFlag.java | 1 + .../flag/implementations/VineGrowFlag.java | 1 + .../flag/implementations/WeatherFlag.java | 1 + .../plot/flag/types/BlockTypeListFlag.java | 1 + .../plot/flag/types/BlockTypeWrapper.java | 1 + .../core/plot/flag/types/BooleanFlag.java | 1 + .../core/plot/flag/types/DoubleFlag.java | 1 + .../core/plot/flag/types/IntegerFlag.java | 1 + .../core/plot/flag/types/ListFlag.java | 1 + .../core/plot/flag/types/LongFlag.java | 1 + .../flag/types/NonNegativeIntegerFlag.java | 1 + .../core/plot/flag/types/NumberFlag.java | 1 + .../core/plot/flag/types/TimedFlag.java | 1 + .../core/plot/schematic/Schematic.java | 1 + .../core/plot/schematic/StoredEntity.java | 1 + .../plot/world/DefaultPlotAreaManager.java | 1 + .../core/plot/world/PlotAreaManager.java | 1 + .../core/plot/world/ScatteredPlotWorld.java | 1 + .../core/plot/world/SinglePlot.java | 1 + .../core/plot/world/SinglePlotArea.java | 1 + .../plot/world/SinglePlotAreaManager.java | 1 + .../core/plot/world/SinglePlotManager.java | 1 + .../core/plot/world/StandardPlotWorld.java | 1 + .../AreaBoundDelegateQueueCoordinator.java | 1 + .../core/queue/BasicQueueCoordinator.java | 1 + .../core/queue/ChunkCoordinator.java | 1 + .../core/queue/ChunkCoordinatorBuilder.java | 1 + .../core/queue/ChunkQueueCoordinator.java | 1 + .../core/queue/DelegateQueueCoordinator.java | 1 + .../core/queue/GlobalBlockQueue.java | 1 + .../plotsquared/core/queue/LocalChunk.java | 1 + ...ocationOffsetDelegateQueueCoordinator.java | 1 + .../core/queue/QueueCoordinator.java | 1 + .../plotsquared/core/queue/QueueProvider.java | 1 + .../core/queue/ScopedQueueCoordinator.java | 1 + .../core/services/plots/AutoService.java | 1 + .../core/setup/CommonSetupSteps.java | 1 + .../core/setup/PlotAreaBuilder.java | 1 + .../core/setup/SettingsNodeStep.java | 1 + .../core/setup/SettingsNodesWrapper.java | 1 + .../plotsquared/core/setup/SetupProcess.java | 1 + .../com/plotsquared/core/setup/SetupStep.java | 1 + .../core/synchronization/LockKey.java | 1 + .../core/synchronization/LockRepository.java | 1 + .../com/plotsquared/core/util/BlockUtil.java | 1 + .../plotsquared/core/util/ChunkManager.java | 1 + .../com/plotsquared/core/util/ChunkUtil.java | 1 + .../plotsquared/core/util/EconHandler.java | 1 + .../com/plotsquared/core/util/EntityUtil.java | 1 + .../core/util/EventDispatcher.java | 1 + .../com/plotsquared/core/util/Expression.java | 1 + .../com/plotsquared/core/util/FileBytes.java | 1 + .../com/plotsquared/core/util/FileUtils.java | 1 + .../com/plotsquared/core/util/HashUtil.java | 1 + .../plotsquared/core/util/InventoryUtil.java | 1 + .../com/plotsquared/core/util/ItemUtil.java | 1 + .../core/util/LegacyConverter.java | 1 + .../com/plotsquared/core/util/MainUtil.java | 1 + .../com/plotsquared/core/util/MathMan.java | 1 + .../plotsquared/core/util/PatternUtil.java | 1 + .../plotsquared/core/util/Permissions.java | 1 + .../core/util/PlatformWorldManager.java | 1 + .../plotsquared/core/util/PlayerManager.java | 1 + .../core/util/PlotAreaConverter.java | 1 + .../core/util/PremiumVerification.java | 1 + .../core/util/ReflectionUtils.java | 1 + .../com/plotsquared/core/util/RegExUtil.java | 1 + .../plotsquared/core/util/RegionManager.java | 1 + .../com/plotsquared/core/util/RegionUtil.java | 1 + .../util/RuntimeExceptionRunnableVal.java | 1 + .../core/util/SchematicHandler.java | 1 + .../com/plotsquared/core/util/SetupUtils.java | 1 + .../core/util/StringComparison.java | 1 + .../com/plotsquared/core/util/StringMan.java | 1 + .../plotsquared/core/util/TabCompletions.java | 1 + .../plotsquared/core/util/ThreadUtils.java | 1 + .../com/plotsquared/core/util/TimeUtil.java | 1 + .../com/plotsquared/core/util/WEManager.java | 1 + .../com/plotsquared/core/util/WorldUtil.java | 1 + .../core/util/entity/EntityCategories.java | 1 + .../core/util/entity/EntityCategory.java | 1 + .../core/util/helpmenu/HelpMenu.java | 1 + .../core/util/helpmenu/HelpObject.java | 1 + .../core/util/helpmenu/HelpPage.java | 1 + .../net/AbstractDelegateOutputStream.java | 1 + .../plotsquared/core/util/net/HttpUtil.java | 1 + .../core/util/net/IncendoPaster.java | 1 + .../core/util/placeholders/Placeholder.java | 1 + .../placeholders/PlaceholderRegistry.java | 1 + .../placeholders/PlotFlagPlaceholder.java | 1 + .../placeholders/PlotSpecificPlaceholder.java | 1 + .../core/util/query/AliasFilter.java | 1 + .../util/query/AreaLimitedPlotProvider.java | 1 + .../core/util/query/ExpiredPlotProvider.java | 1 + .../core/util/query/FixedPlotProvider.java | 1 + .../core/util/query/GlobalPlotProvider.java | 1 + .../core/util/query/MemberFilter.java | 1 + .../core/util/query/NullProvider.java | 1 + .../core/util/query/OwnerFilter.java | 1 + .../core/util/query/PaginatedPlotResult.java | 1 + .../core/util/query/PlotFilter.java | 1 + .../core/util/query/PlotProvider.java | 1 + .../core/util/query/PlotQuery.java | 1 + .../core/util/query/PredicateFilter.java | 1 + .../core/util/query/SearchPlotProvider.java | 1 + .../core/util/query/SortingStrategy.java | 1 + .../core/util/task/AutoClaimFinishTask.java | 1 + .../core/util/task/ObjectTaskRunnable.java | 1 + .../core/util/task/PlotSquaredTask.java | 1 + .../core/util/task/RunnableVal.java | 1 + .../core/util/task/RunnableVal2.java | 1 + .../core/util/task/RunnableVal3.java | 1 + .../core/util/task/TaskManager.java | 1 + .../plotsquared/core/util/task/TaskTime.java | 1 + .../core/uuid/CacheUUIDService.java | 1 + .../plotsquared/core/uuid/ServiceError.java | 1 + .../plotsquared/core/uuid/UUIDMapping.java | 1 + .../plotsquared/core/uuid/UUIDPipeline.java | 1 + .../plotsquared/core/uuid/UUIDService.java | 1 + .../uuid/offline/OfflineModeUUIDService.java | 1 + .../core/database/AbstractDBTest.java | 1 + .../com/plotsquared/core/plot/FlagTest.java | 1 + .../core/plot/PlotVersionTest.java | 1 + HEADER => HEADER.txt | 2 +- build.gradle | 145 ------------- build.gradle.kts | 147 +++++++++++++ gradle/wrapper/gradle-wrapper.properties | 2 +- settings.gradle | 6 - settings.gradle.kts | 6 + 540 files changed, 829 insertions(+), 745 deletions(-) delete mode 100644 Bukkit/build.gradle create mode 100644 Bukkit/build.gradle.kts delete mode 100644 Bukkit/pom.xml delete mode 100644 Core/build.gradle create mode 100644 Core/build.gradle.kts delete mode 100644 Core/pom.xml rename HEADER => HEADER.txt (95%) delete mode 100644 build.gradle create mode 100644 build.gradle.kts delete mode 100644 settings.gradle create mode 100644 settings.gradle.kts diff --git a/.gitignore b/.gitignore index 3423dd222..a33dda199 100644 --- a/.gitignore +++ b/.gitignore @@ -2,11 +2,7 @@ *.cmd *.sh *.prefs -Sponge/build Core/build -Bukkit/build -Nukkit/build -buildSrc/ ### Maven ### /mvn @@ -134,12 +130,8 @@ local.properties # STS (Spring Tool Suite) .springBeans /target/ -Nukkit/build/classes/ -Nukkit/build/dependency-cache/ checkstyle.xml classes/ -p2error.txt *.bat -Nukkit/build/resources/main/plugin.yml docs/ build/ diff --git a/Bukkit/build.gradle b/Bukkit/build.gradle deleted file mode 100644 index 2affa47cd..000000000 --- a/Bukkit/build.gradle +++ /dev/null @@ -1,152 +0,0 @@ -plugins { - id "com.github.johnrengelman.shadow" -} -repositories { - mavenLocal() - maven { url = "https://hub.spigotmc.org/nexus/content/repositories/snapshots/" } - maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" } - maven { url = "https://jitpack.io" } - maven { url = "https://repo.codemc.org/repository/maven-public" } - maven { url = "https://repo.extendedclip.com/content/repositories/placeholderapi/" } - maven { - name = "papermc" - url = "https://papermc.io/repo/repository/maven-public/" - } - maven { url = "https://ci.ender.zone/plugin/repository/everything/" } - maven { url = "https://mvn.intellectualsites.com/content/repositories/releases" } - maven { url = "https://mvn.intellectualsites.com/content/repositories/snapshots" } - maven { url = "https://repo.wea-ondara.net/repository/public/" } - maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" } - maven { url = "http://repo.mvdw-software.be/content/groups/public/" } -} - - -dependencies { - implementation(project(":PlotSquared-Core")) - compile("org.bstats:bstats-bukkit:1.7") - compile(project(":PlotSquared-Core")) - compile("com.destroystokyo.paper:paper-api:1.16.2-R0.1-SNAPSHOT") - implementation("org.spigotmc:spigot-api:1.16.2-R0.1-SNAPSHOT") - compile(group: "com.sk89q.worldedit", name: "worldedit-bukkit", version: "7.2.0-SNAPSHOT") { - exclude(module: "bukkit") - } - compile("io.papermc:paperlib:1.0.4") - implementation("net.kyori:text-adapter-bukkit:3.0.3") - compile("com.github.MilkBowl:VaultAPI:1.7") { - exclude(module: "bukkit") - } - implementation("me.clip:placeholderapi:2.10.6") - implementation("net.luckperms:api:5.1") - implementation("net.ess3:EssentialsX:2.18.0") { - exclude(group: "io.papermc", module: "paperlib") - } - implementation("net.alpenblock:BungeePerms:4.0-dev-106") - implementation("net.kyori:adventure-platform-bukkit:4.0.0-SNAPSHOT") - implementation('net.kyori:adventure-text-minimessage:4.0.0-SNAPSHOT') - compile("se.hyperver.hyperverse:Core:0.6.0-SNAPSHOT"){ transitive = false } - compile('com.sk89q:squirrelid:1.0.0-SNAPSHOT'){ transitive = false } - compile('be.maximvdw:MVdWPlaceholderAPI:3.1.1'){ transitive = false } - // logging - implementation('org.apache.logging.log4j:log4j-slf4j-impl:2.8.1') -} - -sourceCompatibility = 1.8 -targetCompatibility = 1.8 - -processResources { - from("src/main/resources") { - include("plugin.yml") - expand( - name: project.parent.name, - version: project.parent.version - ) - } -} - -//noinspection GroovyAssignabilityCheck -jar.archiveFileName = "PlotSquared-Bukkit-${project.parent.version}.jar" -jar.destinationDirectory = file("../mvn/com/plotsquared/PlotSquared-Bukkit/" + project.parent.version) -task createPom { - doLast { - pom { - project { - groupId = rootProject.group - artifactId = "PlotSquared-Bukkit" - version = rootProject.version - } - }.writeTo("../mvn/com/plotsquared/PlotSquared-Bukkit/${project.parent.version}/PlotSquared-Bukkit-${project.parent.version}.pom") - pom { - project { - groupId = rootProject.group - artifactId = "PlotSquared-Bukkit" - version = "latest" - } - }.writeTo("../mvn/com/plotsquared/PlotSquared-Bukkit/latest/PlotSquared-Bukkit-latest.pom") - .writeTo("pom.xml") - } -} - -task copyFiles { - doLast { - copy { - from("../mvn/com/plotsquared/PlotSquared-Bukkit/${project.parent.version}/") - into("../mvn/com/plotsquared/PlotSquared-Bukkit/latest/") - include("PlotSquared-Bukkit*.jar") - rename("PlotSquared-Bukkit-${project.parent.version}.jar", "PlotSquared-Bukkit-latest.jar") - } - } -} - -def adventureVersion = '4.0.0-SNAPSHOT' - -shadowJar { - dependencies { - include(dependency(":PlotSquared-Core")) - include(dependency("io.papermc:paperlib:1.0.4")) - include(dependency("net.kyori:adventure-platform-bukkit:${adventureVersion}")) - include(dependency("net.kyori:adventure-text-minimessage:3.0.0-SNAPSHOT")) - include(dependency("net.kyori:adventure-text-serializer-bungeecord:${adventureVersion}")) - include(dependency("net.kyori:adventure-text-serializer-legacy:${adventureVersion}")) - include(dependency("net.kyori:adventure-text-serializer-gson:${adventureVersion}")) - include(dependency("net.kyori:adventure-api:${adventureVersion}")) - include(dependency("net.kyori:adventure-platform-api:${adventureVersion}")) - include(dependency("net.kyori:adventure-platform-common:${adventureVersion}")) - include(dependency("net.kyori:adventure-platform-viaversion:${adventureVersion}")) - include(dependency("net.kyori:adventure-nbt:${adventureVersion}")) - include(dependency("net.kyori:examination-api:1.0.0-SNAPSHOT")) - include(dependency("net.kyori:examination-string:1.0.0-SNAPSHOT")) - include(dependency("org.bstats:bstats-bukkit:1.7")) - include(dependency("org.khelekore:prtree:1.7.0-SNAPSHOT")) - include(dependency("com.sk89q:squirrelid:1.0.0-SNAPSHOT")) - include(dependency("com.google.inject:guice:4.2.3")) - include(dependency("com.google.inject.extensions:guice-assistedinject:4.2.3")) - include(dependency("javax.annotation:javax-annotation-api")) - include(dependency('org.apache.logging.log4j:log4j-slf4j-impl')) - include(dependency('org.slf4j:slf4j-api')) - include(dependency('javax.inject:javax.inject:1')) - include(dependency('aopalliance:aopalliance:1.0')) - include(dependency('com.intellectualsites:Pipeline:1.4.0-SNAPSHOT')) - } - - relocate('net.kyori.adventure', 'com.plotsquared.core.configuration.adventure') - relocate("io.papermc.lib", "com.plotsquared.bukkit.paperlib") - relocate("org.bstats", "com.plotsquared.metrics") - relocate('com.sk89q.squirrelid', 'com.plotsquared.squirrelid') - relocate('org.khelekore.prtree', 'com.plotsquared.prtree') - relocate('org.apache.logging.slf4j', 'com.plotsquared.logging.apache') - relocate('org.slf4j', 'com.plotsquared.logging.slf4j') - relocate('com.google.inject', 'com.plotsquared.google') - relocate('javax.inject', 'com.plotsquared.core.inject.javax') - - archiveFileName = "${project.name}-${parent.version}.jar" - destinationDirectory = file "../target" -} - -shadowJar.doLast { - task -> - ant.checksum file: task.archivePath -} - -build.dependsOn(shadowJar) -build.finalizedBy(copyFiles) -copyFiles.dependsOn(createPom) diff --git a/Bukkit/build.gradle.kts b/Bukkit/build.gradle.kts new file mode 100644 index 000000000..07cffade9 --- /dev/null +++ b/Bukkit/build.gradle.kts @@ -0,0 +1,117 @@ +import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar + +repositories { + maven { + name = "SpigotMC" + url = uri("https://hub.spigotmc.org/nexus/content/repositories/snapshots/") + } + + maven { + name = "CodeMC" + url = uri("https://repo.codemc.org/repository/maven-public") + } + + maven { + name = "PlaceholderAPI" + url = uri("https://repo.extendedclip.com/content/repositories/placeholderapi/") + } + + maven { + name = "PaperMC" + url = uri("https://papermc.io/repo/repository/maven-public/") + } + + maven { + name = "EssentialsX" + url = uri("https://ci.ender.zone/plugin/repository/everything/") + } + + maven { + name = "IntellectualSites" + url = uri("https://mvn.intellectualsites.com/content/repositories/releases") + } +} + +dependencies { + api(project(":PlotSquared-Core")) + + // + // Implementation details + // + + // ~~Spyware~~ Metrics + implementation("org.bstats:bstats-bukkit:1.7") + + // Minecraft + compileOnlyApi("com.destroystokyo.paper:paper-api:1.16.3-R0.1-SNAPSHOT") + implementation("io.papermc:paperlib:1.0.4") + + // Plugins + compileOnly("com.sk89q.worldedit:worldedit-bukkit:7.2.0-SNAPSHOT") { + exclude(group = "org.bukkit") + } + compileOnly("com.github.MilkBowl:VaultAPI:1.7") { + exclude(group = "org.bukkit") + } + compileOnly("me.clip:placeholderapi:2.10.6") + compileOnly("net.luckperms:api:5.1") + compileOnly("net.ess3:EssentialsX:2.18.0") + compileOnly("se.hyperver.hyperverse:Core:0.6.0-SNAPSHOT") { isTransitive = false } + compileOnly("be.maximvdw:MVdWPlaceholderAPI:3.1.1") { isTransitive = false } + + // Other libraries + compileOnly("com.sk89q:squirrelid:1.0.0-SNAPSHOT") { isTransitive = false } + + // Adventure + implementation("net.kyori:text-adapter-bukkit:3.0.3") +} + +tasks.named("processResources") { + filesMatching("plugin.yml") { + expand("version" to project.version) + } +} + +// TODO: Get this to be not ugly... +tasks.named("shadowJar") { + dependencies { + include(dependency(":PlotSquared-Core")) + include(dependency("io.papermc:paperlib")) + include(dependency("net.kyori:adventure-platform-bukkit")) + include(dependency("net.kyori:adventure-text-minimessage")) + include(dependency("net.kyori:adventure-text-serializer-bungeecord")) + include(dependency("net.kyori:adventure-text-serializer-legacy")) + include(dependency("net.kyori:adventure-text-serializer-gson")) + include(dependency("net.kyori:adventure-api")) + include(dependency("net.kyori:adventure-platform-api")) + include(dependency("net.kyori:adventure-platform-common")) + include(dependency("net.kyori:adventure-platform-viaversion")) + include(dependency("net.kyori:adventure-nbt")) + include(dependency("net.kyori:examination-api")) + include(dependency("net.kyori:examination-string")) + include(dependency("org.bstats:bstats-bukkit")) + include(dependency("org.khelekore:prtree")) + include(dependency("com.sk89q:squirrelid")) + include(dependency("com.google.inject:guice")) + include(dependency("com.google.inject.extensions:guice-assistedinject")) + include(dependency("javax.annotation:javax-annotation-api")) + include(dependency("org.apache.logging.log4j:log4j-slf4j-impl")) + include(dependency("org.slf4j:slf4j-api")) + include(dependency("javax.inject:javax.inject")) + include(dependency("aopalliance:aopalliance")) + include(dependency("com.intellectualsites:Pipeline")) + + relocate("net.kyori.adventure", "com.plotsquared.core.configuration.adventure") + relocate("io.papermc.lib", "com.plotsquared.bukkit.paperlib") + relocate("org.bstats", "com.plotsquared.metrics") + relocate("com.sk89q.squirrelid", "com.plotsquared.squirrelid") + relocate("org.khelekore.prtree", "com.plotsquared.prtree") + relocate("org.apache.logging.slf4j", "com.plotsquared.logging.apache") + relocate("org.slf4j", "com.plotsquared.logging.slf4j") + relocate("com.google.inject", "com.plotsquared.google") + relocate("javax.inject", "com.plotsquared.core.inject.javax") + relocate("org.json", "com.plotsquared.json") { + exclude("org/json/simple/**") + } + } +} diff --git a/Bukkit/pom.xml b/Bukkit/pom.xml deleted file mode 100644 index e95ab6610..000000000 --- a/Bukkit/pom.xml +++ /dev/null @@ -1,198 +0,0 @@ - - - 4.0.0 - com.plotsquared - PlotSquared-Bukkit - latest - - - org.json - json - 20200518 - compile - - - javax.annotation - javax.annotation-api - 1.3.2 - compile - - - org.bstats - bstats-bukkit - 1.7 - compile - - - com.plotsquared - PlotSquared-Core - 6.0.0-SNAPSHOT - compile - - - com.destroystokyo.paper - paper-api - 1.16.2-R0.1-SNAPSHOT - compile - - - com.sk89q.worldedit - worldedit-bukkit - 7.2.0-SNAPSHOT - compile - - - bukkit - * - - - - - io.papermc - paperlib - 1.0.4 - compile - - - com.github.MilkBowl - VaultAPI - 1.7 - compile - - - bukkit - * - - - - - se.hyperver.hyperverse - Core - 0.6.0-SNAPSHOT - compile - - - * - * - - - - - com.sk89q - squirrelid - 1.0.0-SNAPSHOT - compile - - - * - * - - - - - be.maximvdw - MVdWPlaceholderAPI - 3.1.1 - compile - - - * - * - - - - - com.sk89q.worldedit - worldedit-core - 7.2.0-SNAPSHOT - runtime - - - dummypermscompat - * - - - bukkit-classloader-check - * - - - mockito-core - * - - - - - com.google.guava - guava - 21.0 - runtime - - - org.spigotmc - spigot-api - 1.16.2-R0.1-SNAPSHOT - runtime - - - net.kyori - text-adapter-bukkit - 3.0.3 - runtime - - - me.clip - placeholderapi - 2.10.6 - runtime - - - net.luckperms - api - 5.1 - runtime - - - net.ess3 - EssentialsX - 2.18.0 - runtime - - - paperlib - io.papermc - - - - - net.alpenblock - BungeePerms - 4.0-dev-106 - runtime - - - net.kyori - adventure-platform-bukkit - 4.0.0-SNAPSHOT - runtime - - - net.kyori - adventure-text-minimessage - 4.0.0-SNAPSHOT - runtime - - - org.apache.logging.log4j - log4j-slf4j-impl - 2.8.1 - runtime - - - junit - junit - 4.13 - test - - - diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitCommand.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitCommand.java index 1ba24bbde..f1ee49802 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitCommand.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitCommand.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit; import com.plotsquared.bukkit.util.BukkitUtil; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java index bdad258d7..9ee61df1d 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit; import com.google.inject.Guice; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/AgeableStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/AgeableStats.java index 21efd616e..1f74014af 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/AgeableStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/AgeableStats.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.entity; class AgeableStats { diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ArmorStandStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ArmorStandStats.java index bd81de12d..9d03263a1 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ArmorStandStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ArmorStandStats.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.entity; class ArmorStandStats { diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityBaseStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityBaseStats.java index b2be16c84..bee5090ef 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityBaseStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityBaseStats.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.entity; class EntityBaseStats { diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityWrapper.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityWrapper.java index 581fded37..71aa29953 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityWrapper.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityWrapper.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.entity; import org.bukkit.Location; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/HorseStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/HorseStats.java index 360125a46..70e2e7903 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/HorseStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/HorseStats.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.entity; import org.bukkit.entity.Horse; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/LivingEntityStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/LivingEntityStats.java index 6445370aa..87df6fc51 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/LivingEntityStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/LivingEntityStats.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.entity; import org.bukkit.inventory.ItemStack; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ReplicatingEntityWrapper.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ReplicatingEntityWrapper.java index e19f5b641..99fef4e41 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ReplicatingEntityWrapper.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ReplicatingEntityWrapper.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.entity; import com.plotsquared.core.configuration.Settings; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TameableStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TameableStats.java index e4e6ae54e..3dac07eb3 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TameableStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TameableStats.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.entity; import org.bukkit.entity.AnimalTamer; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TeleportEntityWrapper.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TeleportEntityWrapper.java index c829c0739..60b04c622 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TeleportEntityWrapper.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TeleportEntityWrapper.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.entity; import com.plotsquared.bukkit.BukkitPlatform; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BlockStatePopulator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BlockStatePopulator.java index 662ff8703..43c8c7cf8 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BlockStatePopulator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BlockStatePopulator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.generator; import com.plotsquared.core.PlotSquared; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitAugmentedGenerator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitAugmentedGenerator.java index dc8a6a5ef..cb6c08caf 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitAugmentedGenerator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitAugmentedGenerator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.generator; import com.plotsquared.core.generator.AugmentedUtils; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitPlotGenerator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitPlotGenerator.java index 67b177770..83515be34 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitPlotGenerator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitPlotGenerator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.generator; import com.plotsquared.bukkit.queue.GenChunk; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/DelegatePlotGenerator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/DelegatePlotGenerator.java index dcd896b49..e07f07e87 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/DelegatePlotGenerator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/DelegatePlotGenerator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.generator; import com.plotsquared.bukkit.util.BukkitUtil; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BackupModule.java b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BackupModule.java index e155a99b2..912d91a47 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BackupModule.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BackupModule.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.inject; import com.google.inject.AbstractModule; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BukkitModule.java b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BukkitModule.java index e9fb0d92f..e72914694 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BukkitModule.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BukkitModule.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.inject; import com.google.inject.AbstractModule; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/PermissionModule.java b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/PermissionModule.java index 2f2cc97fa..030ef0670 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/PermissionModule.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/PermissionModule.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.inject; import com.google.inject.AbstractModule; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/WorldManagerModule.java b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/WorldManagerModule.java index 413662ca1..474545324 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/WorldManagerModule.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/WorldManagerModule.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.inject; import com.google.inject.AbstractModule; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/BlockEventListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/BlockEventListener.java index 3961393db..2174d5142 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/BlockEventListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/BlockEventListener.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.listener; import com.plotsquared.bukkit.player.BukkitPlayer; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ChunkListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ChunkListener.java index 703cd631b..f090d02a5 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ChunkListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ChunkListener.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.listener; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntityEventListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntityEventListener.java index 6da88779e..8c5cc46c4 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntityEventListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntityEventListener.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.listener; import com.plotsquared.bukkit.util.BukkitEntityUtil; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntitySpawnListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntitySpawnListener.java index 21152b8e4..60836f63b 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntitySpawnListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntitySpawnListener.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.listener; import com.plotsquared.bukkit.util.BukkitEntityUtil; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ForceFieldListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ForceFieldListener.java index b3a5802d2..1083cfb31 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ForceFieldListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ForceFieldListener.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.listener; import com.google.common.collect.Iterables; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java index 73a823ffe..fdbee1210 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.listener; import com.destroystokyo.paper.event.entity.EntityPathfindEvent; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener113.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener113.java index 4a92ae36b..c920eaeda 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener113.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener113.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.listener; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java index 496d19482..4697c3fae 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.listener; import com.destroystokyo.paper.MaterialTags; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ProjectileEventListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ProjectileEventListener.java index 623b76190..2eb7c2dd9 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ProjectileEventListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ProjectileEventListener.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.listener; import com.plotsquared.bukkit.util.BukkitEntityUtil; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ServerListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ServerListener.java index 1fa5ed699..c1a36863c 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ServerListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ServerListener.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.listener; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java index 5c550bf2f..1c62a09dc 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.listener; import com.plotsquared.core.PlotSquared; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/WorldEvents.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/WorldEvents.java index 7498b9b01..4938eeddc 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/WorldEvents.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/WorldEvents.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.listener; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/BukkitWorldManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/BukkitWorldManager.java index eec3c2b42..4cb260164 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/BukkitWorldManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/BukkitWorldManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.managers; import com.google.inject.Singleton; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/HyperverseWorldManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/HyperverseWorldManager.java index 1ef8cadd9..85adc272c 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/HyperverseWorldManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/HyperverseWorldManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.managers; import com.google.inject.Singleton; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/MultiverseWorldManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/MultiverseWorldManager.java index 1477148f7..e3a2c16ec 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/MultiverseWorldManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/MultiverseWorldManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.managers; import com.google.inject.Singleton; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/BukkitPermissionHandler.java b/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/BukkitPermissionHandler.java index 66b47fec3..8b43ac4e5 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/BukkitPermissionHandler.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/BukkitPermissionHandler.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.permissions; import com.plotsquared.bukkit.player.BukkitPlayer; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/VaultPermissionHandler.java b/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/VaultPermissionHandler.java index 51d7cf2b2..432f590d6 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/VaultPermissionHandler.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/VaultPermissionHandler.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.permissions; import com.plotsquared.bukkit.player.BukkitOfflinePlayer; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/MVdWPlaceholders.java b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/MVdWPlaceholders.java index f1876ccd3..f0d13ad6c 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/MVdWPlaceholders.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/MVdWPlaceholders.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.placeholder; import be.maximvdw.placeholderapi.PlaceholderAPI; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PAPIPlaceholders.java b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PAPIPlaceholders.java index 5e05f5e95..150e041e9 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PAPIPlaceholders.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PAPIPlaceholders.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.placeholder; import com.plotsquared.core.PlotSquared; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PlaceholderFormatter.java b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PlaceholderFormatter.java index 050b881e1..229016e7f 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PlaceholderFormatter.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PlaceholderFormatter.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.placeholder; import com.plotsquared.bukkit.player.BukkitPlayer; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitOfflinePlayer.java b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitOfflinePlayer.java index 13e34166d..7a9dd7cac 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitOfflinePlayer.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitOfflinePlayer.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.player; import com.plotsquared.core.permissions.NullPermissionProfile; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayer.java b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayer.java index 6fad843db..5f8c331ec 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayer.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayer.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.player; import com.google.common.base.Charsets; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayerManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayerManager.java index a84f4f178..216ba7641 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayerManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayerManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.player; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitChunkCoordinator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitChunkCoordinator.java index 8d50f7a11..369b6fa2d 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitChunkCoordinator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitChunkCoordinator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.queue; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitQueueCoordinator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitQueueCoordinator.java index a0e5b028f..1e0d53fb5 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitQueueCoordinator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitQueueCoordinator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.queue; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/ChunkCoordinator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/ChunkCoordinator.java index 97d2f6eab..083eafbb8 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/ChunkCoordinator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/ChunkCoordinator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.queue; import com.google.common.base.Preconditions; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/GenChunk.java b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/GenChunk.java index 4ccbdf6a1..412c0aace 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/GenChunk.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/GenChunk.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.queue; import com.google.common.base.Preconditions; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/BukkitSchematicHandler.java b/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/BukkitSchematicHandler.java index 4d10fc316..15c2dc2c9 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/BukkitSchematicHandler.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/BukkitSchematicHandler.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.schematic; import com.google.inject.Inject; 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 9c51d2663..c1cebb8d5 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/StateWrapper.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/StateWrapper.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.schematic; import com.plotsquared.bukkit.util.BukkitUtil; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitBlockUtil.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitBlockUtil.java index 67ac72cf7..1487c4fb5 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitBlockUtil.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitBlockUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util; import com.sk89q.worldedit.bukkit.BukkitAdapter; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChunkManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChunkManager.java index 502c5696c..7d3401eb4 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChunkManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChunkManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util; import com.google.inject.Singleton; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEconHandler.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEconHandler.java index 2f33928b8..6bb4fe942 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEconHandler.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEconHandler.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util; import com.google.inject.Singleton; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEntityUtil.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEntityUtil.java index 356b2615f..fba1edf74 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEntityUtil.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEntityUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util; import com.plotsquared.bukkit.player.BukkitPlayer; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitInventoryUtil.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitInventoryUtil.java index dd312fe51..951e924f7 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitInventoryUtil.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitInventoryUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util; import com.google.inject.Singleton; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitRegionManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitRegionManager.java index 11c98a27b..ec354dc8c 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitRegionManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitRegionManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitSetupUtils.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitSetupUtils.java index c403b0e36..858e5b874 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitSetupUtils.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitSetupUtils.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java index 5632f4103..18fd001b3 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util; import com.google.inject.Singleton; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitWorld.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitWorld.java index 8fdcede9d..da58c095d 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitWorld.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitWorld.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util; import com.google.common.collect.Maps; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/ContentMap.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/ContentMap.java index ceeb6e6b1..395c5272b 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/ContentMap.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/ContentMap.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util; import com.plotsquared.bukkit.entity.EntityWrapper; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/SetGenCB.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/SetGenCB.java index ccfe40be0..d98f1ee08 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/SetGenCB.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/SetGenCB.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util; import com.plotsquared.bukkit.generator.BukkitAugmentedGenerator; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/UpdateUtility.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/UpdateUtility.java index faa9d8817..f34ae56ac 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/UpdateUtility.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/UpdateUtility.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util; import com.google.gson.JsonObject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitPlotSquaredTask.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitPlotSquaredTask.java index 4e293d409..028134383 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitPlotSquaredTask.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitPlotSquaredTask.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util.task; import com.plotsquared.core.util.task.PlotSquaredTask; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitTaskManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitTaskManager.java index df47e48a2..e9cee348d 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitTaskManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitTaskManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util.task; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/PaperTimeConverter.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/PaperTimeConverter.java index c5bfb44cf..c0fc7534b 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/PaperTimeConverter.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/PaperTimeConverter.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util.task; import com.plotsquared.core.util.task.TaskTime; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/SpigotTimeConverter.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/SpigotTimeConverter.java index 862e22c50..40c43008f 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/SpigotTimeConverter.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/SpigotTimeConverter.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.util.task; import com.plotsquared.core.util.task.TaskTime; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/BungeePermsUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/BungeePermsUUIDService.java index aab2f2d4c..87f4334a6 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/BungeePermsUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/BungeePermsUUIDService.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.uuid; import com.plotsquared.core.uuid.UUIDMapping; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/EssentialsUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/EssentialsUUIDService.java index e03fc3317..d85a89890 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/EssentialsUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/EssentialsUUIDService.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.uuid; import com.earth2me.essentials.Essentials; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/LuckPermsUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/LuckPermsUUIDService.java index be5ca5c7f..d34ab0d40 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/LuckPermsUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/LuckPermsUUIDService.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.uuid; import com.plotsquared.core.uuid.UUIDMapping; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/OfflinePlayerUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/OfflinePlayerUUIDService.java index 7351f240d..2320780b7 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/OfflinePlayerUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/OfflinePlayerUUIDService.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.uuid; import com.google.common.base.Charsets; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/PaperUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/PaperUUIDService.java index 3700171d1..193aa59f3 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/PaperUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/PaperUUIDService.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.uuid; import com.destroystokyo.paper.profile.PlayerProfile; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SQLiteUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SQLiteUUIDService.java index 8f1bbe684..9156656af 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SQLiteUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SQLiteUUIDService.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.uuid; import com.plotsquared.core.PlotSquared; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SquirrelIdUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SquirrelIdUUIDService.java index f3438fae9..30d6a2e01 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SquirrelIdUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SquirrelIdUUIDService.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.bukkit.uuid; import com.google.common.util.concurrent.RateLimiter; diff --git a/Bukkit/src/main/resources/plugin.yml b/Bukkit/src/main/resources/plugin.yml index b3a485d72..9db0f1518 100644 --- a/Bukkit/src/main/resources/plugin.yml +++ b/Bukkit/src/main/resources/plugin.yml @@ -1,4 +1,4 @@ -name: ${name} +name: PlotSquared main: com.plotsquared.bukkit.BukkitPlatform api-version: "1.13" version: "${version}" diff --git a/Core/build.gradle b/Core/build.gradle deleted file mode 100644 index 57300b946..000000000 --- a/Core/build.gradle +++ /dev/null @@ -1,101 +0,0 @@ -repositories { - maven { url = "https://jitpack.io" } - maven { url = "https://mvn.intellectualsites.com/content/repositories/snapshots" } - maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" } -} -def textVersion = "3.0.2" - -dependencies { - implementation("org.yaml:snakeyaml:1.26") - implementation("com.google.code.gson:gson:2.8.6") { - because("Minecraft uses GSON 2.8.0") - force = true - } - implementation("org.jetbrains.kotlin:kotlin-stdlib:1.3.72") - implementation("org.khelekore:prtree:1.7.0-SNAPSHOT") - // Adventure related stuff - implementation('net.kyori:adventure-api:4.0.0-SNAPSHOT') - implementation('net.kyori:adventure-text-minimessage:4.0.0-SNAPSHOT') - compile("com.google.inject:guice:4.2.3") - compile("com.google.inject.extensions:guice-assistedinject:4.2.3") - compile group: 'com.google.code.findbugs', name: 'annotations', version: '3.0.1' - compile group: 'javax.inject', name: 'javax.inject', version: '1' - compile group: 'aopalliance', name: 'aopalliance', version: '1.0' - // logging - implementation("org.apache.logging.log4j:log4j-slf4j-impl:2.8.1") - implementation('com.intellectualsites:Pipeline:1.4.0-SNAPSHOT') -} - -sourceCompatibility = 1.8 -targetCompatibility = 1.8 - -processResources { - from("src/main/resources") { - include "plugin.properties" - expand( - version: "${project.parent.version}", - name: project.parent.name, - commit: "${git.head().abbreviatedId}", - date: "${git.head().getDate().format("yy.MM.dd")}", - ) - } -} - -//noinspection GroovyAssignabilityCheck -jar.archiveFileName = "PlotSquared-Core-${project.parent.version}.jar" -jar.destinationDirectory = file("../mvn/com/plotsquared/PlotSquared-Core/" + project.parent.version) -task createPom { - doLast { - pom { - project { - groupId = rootProject.group - artifactId = "PlotSquared-Core" - version = project.parent.version - } - }.writeTo("../mvn/com/plotsquared/PlotSquared-Core/${project.parent.version}/PlotSquared-Core-${project.parent.version}.pom") - pom { - project { - groupId = rootProject.group - artifactId = "PlotSquared-Core" - version = "latest" - } - }.writeTo("../mvn/com/plotsquared/PlotSquared-Core/latest/PlotSquared-Core-latest.pom") - .writeTo("pom.xml") - } -} - -task copyFiles { - doLast { - copy { - from("../mvn/com/plotsquared/PlotSquared-Core/${project.parent.version}/") - into("../mvn/com/plotsquared/PlotSquared-Core/latest/") - include("PlotSquared-Core*.jar") - rename("PlotSquared-Core-${project.parent.version}.jar", "PlotSquared-Core-latest.jar") - } - } -} - -shadowJar { - dependencies { - include(dependency('net.kyori:adventure-api:4.0.0-SNAPSHOT')) - include(dependency('net.kyori:adventure-gson:4.0.0-SNAPSHOT')) - include(dependency('net.kyori:adventure-legacy:4.0.0-SNAPSHOT')) - include(dependency('net.kyori:adventure-plain:4.0.0-SNAPSHOT')) - include(dependency('net.kyori:adventure-text-minimessage:4.0.0-SNAPSHOT')) - include(dependency('org.khelekore:prtree:1.7.0-SNAPSHOT')) - } - relocate('net.kyori.text', 'com.plotsquared.formatting.text') - relocate("org.json", "com.plotsquared.json") { - exclude "org/json/simple/**" - } -} - -shadowJar.doLast { - task -> - ant.checksum file: task.archivePath -} - -build.dependsOn(shadowJar) - -build.finalizedBy(copyFiles) -copyFiles.dependsOn(createPom) diff --git a/Core/build.gradle.kts b/Core/build.gradle.kts new file mode 100644 index 000000000..378ddd0c5 --- /dev/null +++ b/Core/build.gradle.kts @@ -0,0 +1,30 @@ +dependencies { + // Expected everywhere. + api("org.json:json:20200518") + api("javax.annotation:javax.annotation-api:1.3.2") + + // Minecraft expectations + compileOnlyApi("com.google.guava:guava:21.0") // Minecraft uses v21.0 + compileOnlyApi("com.google.code.gson:gson:2.8.0") // Minecraft uses v2.8.0 + + // Platform expectations + compileOnlyApi("org.yaml:snakeyaml:1.26") // Some platforms provide this + + // Adventure stuff + api("net.kyori:adventure-api:4.0.0-SNAPSHOT") + api("net.kyori:adventure-text-minimessage:4.0.0-SNAPSHOT") + + // Guice + api("com.google.inject:guice:4.2.3") + api("com.google.inject.extensions:guice-assistedinject:4.2.3") + compileOnlyApi("com.google.code.findbugs:annotations:3.0.1") + compileOnlyApi("javax.inject:javax.inject:1") + + // Logging + api("org.apache.logging.log4j:log4j-slf4j-impl:2.8.1") + + // Other libraries + api("org.khelekore:prtree:1.7.0-SNAPSHOT") + api("aopalliance:aopalliance:1.0") + api("com.intellectualsites:Pipeline:1.4.0-SNAPSHOT") +} diff --git a/Core/pom.xml b/Core/pom.xml deleted file mode 100644 index 585b9a423..000000000 --- a/Core/pom.xml +++ /dev/null @@ -1,132 +0,0 @@ - - - 4.0.0 - com.plotsquared - PlotSquared-Core - latest - - - org.json - json - 20200518 - compile - - - javax.annotation - javax.annotation-api - 1.3.2 - compile - - - com.google.inject - guice - 4.2.3 - compile - - - com.google.inject.extensions - guice-assistedinject - 4.2.3 - compile - - - com.google.code.findbugs - annotations - 3.0.1 - compile - - - javax.inject - javax.inject - 1 - compile - - - aopalliance - aopalliance - 1.0 - compile - - - com.sk89q.worldedit - worldedit-core - 7.2.0-SNAPSHOT - runtime - - - dummypermscompat - * - - - bukkit-classloader-check - * - - - mockito-core - * - - - - - com.google.guava - guava - 21.0 - runtime - - - org.yaml - snakeyaml - 1.26 - runtime - - - com.google.code.gson - gson - 2.8.6 - runtime - - - org.jetbrains.kotlin - kotlin-stdlib - 1.3.72 - runtime - - - org.khelekore - prtree - 1.7.0-SNAPSHOT - runtime - - - net.kyori - adventure-api - 4.0.0-SNAPSHOT - runtime - - - net.kyori - adventure-text-minimessage - 4.0.0-SNAPSHOT - runtime - - - org.apache.logging.log4j - log4j-slf4j-impl - 2.8.1 - runtime - - - com.intellectualsites - Pipeline - 1.4.0-SNAPSHOT - runtime - - - junit - junit - 4.13 - test - - - diff --git a/Core/src/main/java/com/plotsquared/core/Platform.java b/Core/src/main/java/com/plotsquared/core/Platform.java index ff5187bae..b23762b24 100644 --- a/Core/src/main/java/com/plotsquared/core/Platform.java +++ b/Core/src/main/java/com/plotsquared/core/Platform.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core; public enum Platform { diff --git a/Core/src/main/java/com/plotsquared/core/PlotAPI.java b/Core/src/main/java/com/plotsquared/core/PlotAPI.java index 71dbf5c07..106c56b54 100644 --- a/Core/src/main/java/com/plotsquared/core/PlotAPI.java +++ b/Core/src/main/java/com/plotsquared/core/PlotAPI.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/PlotPlatform.java b/Core/src/main/java/com/plotsquared/core/PlotPlatform.java index 3d6387bec..1971abaf7 100644 --- a/Core/src/main/java/com/plotsquared/core/PlotPlatform.java +++ b/Core/src/main/java/com/plotsquared/core/PlotPlatform.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core; import com.google.inject.Injector; diff --git a/Core/src/main/java/com/plotsquared/core/PlotSquared.java b/Core/src/main/java/com/plotsquared/core/PlotSquared.java index 3cc968a1e..13984e01a 100644 --- a/Core/src/main/java/com/plotsquared/core/PlotSquared.java +++ b/Core/src/main/java/com/plotsquared/core/PlotSquared.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core; import com.plotsquared.core.configuration.ConfigurationSection; diff --git a/Core/src/main/java/com/plotsquared/core/PlotVersion.java b/Core/src/main/java/com/plotsquared/core/PlotVersion.java index 019f23af3..97b678a8e 100644 --- a/Core/src/main/java/com/plotsquared/core/PlotVersion.java +++ b/Core/src/main/java/com/plotsquared/core/PlotVersion.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core; public class PlotVersion { diff --git a/Core/src/main/java/com/plotsquared/core/backup/Backup.java b/Core/src/main/java/com/plotsquared/core/backup/Backup.java index 3fee60455..989abfe24 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/Backup.java +++ b/Core/src/main/java/com/plotsquared/core/backup/Backup.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.backup; import javax.annotation.Nullable; diff --git a/Core/src/main/java/com/plotsquared/core/backup/BackupManager.java b/Core/src/main/java/com/plotsquared/core/backup/BackupManager.java index 64da6c0ae..edfcaf5c9 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/BackupManager.java +++ b/Core/src/main/java/com/plotsquared/core/backup/BackupManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.backup; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/backup/BackupProfile.java b/Core/src/main/java/com/plotsquared/core/backup/BackupProfile.java index fc6310ecf..059ab3709 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/BackupProfile.java +++ b/Core/src/main/java/com/plotsquared/core/backup/BackupProfile.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.backup; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/backup/NullBackupManager.java b/Core/src/main/java/com/plotsquared/core/backup/NullBackupManager.java index c237b49a6..598bb011e 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/NullBackupManager.java +++ b/Core/src/main/java/com/plotsquared/core/backup/NullBackupManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.backup; import com.google.inject.Singleton; diff --git a/Core/src/main/java/com/plotsquared/core/backup/NullBackupProfile.java b/Core/src/main/java/com/plotsquared/core/backup/NullBackupProfile.java index 12460e9c5..c42ab4dac 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/NullBackupProfile.java +++ b/Core/src/main/java/com/plotsquared/core/backup/NullBackupProfile.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.backup; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/backup/PlayerBackupProfile.java b/Core/src/main/java/com/plotsquared/core/backup/PlayerBackupProfile.java index 8366fe5bf..73332ffa9 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/PlayerBackupProfile.java +++ b/Core/src/main/java/com/plotsquared/core/backup/PlayerBackupProfile.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.backup; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/backup/SimpleBackupManager.java b/Core/src/main/java/com/plotsquared/core/backup/SimpleBackupManager.java index 2d0794d4b..851927cf2 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/SimpleBackupManager.java +++ b/Core/src/main/java/com/plotsquared/core/backup/SimpleBackupManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.backup; import com.google.common.cache.Cache; diff --git a/Core/src/main/java/com/plotsquared/core/collection/ArrayUtil.java b/Core/src/main/java/com/plotsquared/core/collection/ArrayUtil.java index 83e8ee272..ceafeede4 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/ArrayUtil.java +++ b/Core/src/main/java/com/plotsquared/core/collection/ArrayUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.collection; import java.util.Arrays; diff --git a/Core/src/main/java/com/plotsquared/core/collection/ByteArrayUtilities.java b/Core/src/main/java/com/plotsquared/core/collection/ByteArrayUtilities.java index 119879e76..fac597903 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/ByteArrayUtilities.java +++ b/Core/src/main/java/com/plotsquared/core/collection/ByteArrayUtilities.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.collection; public class ByteArrayUtilities { diff --git a/Core/src/main/java/com/plotsquared/core/collection/FlatRandomCollection.java b/Core/src/main/java/com/plotsquared/core/collection/FlatRandomCollection.java index 1a0896988..2808d301a 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/FlatRandomCollection.java +++ b/Core/src/main/java/com/plotsquared/core/collection/FlatRandomCollection.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.collection; import com.plotsquared.core.util.MathMan; diff --git a/Core/src/main/java/com/plotsquared/core/collection/QuadMap.java b/Core/src/main/java/com/plotsquared/core/collection/QuadMap.java index efe9caa14..b1ed75b0a 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/QuadMap.java +++ b/Core/src/main/java/com/plotsquared/core/collection/QuadMap.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.collection; import com.plotsquared.core.util.RegionUtil; diff --git a/Core/src/main/java/com/plotsquared/core/collection/RandomCollection.java b/Core/src/main/java/com/plotsquared/core/collection/RandomCollection.java index 2be11b956..c9cc8b91e 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/RandomCollection.java +++ b/Core/src/main/java/com/plotsquared/core/collection/RandomCollection.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.collection; import java.util.Map; diff --git a/Core/src/main/java/com/plotsquared/core/collection/SimpleRandomCollection.java b/Core/src/main/java/com/plotsquared/core/collection/SimpleRandomCollection.java index c63461325..617fa23c6 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/SimpleRandomCollection.java +++ b/Core/src/main/java/com/plotsquared/core/collection/SimpleRandomCollection.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.collection; import java.util.Map; diff --git a/Core/src/main/java/com/plotsquared/core/command/Add.java b/Core/src/main/java/com/plotsquared/core/command/Add.java index 836ed2d11..55bc7c121 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Add.java +++ b/Core/src/main/java/com/plotsquared/core/command/Add.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Alias.java b/Core/src/main/java/com/plotsquared/core/command/Alias.java index ec5e35bab..77183a89b 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Alias.java +++ b/Core/src/main/java/com/plotsquared/core/command/Alias.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/command/Area.java b/Core/src/main/java/com/plotsquared/core/command/Area.java index 8d1bc9a75..582ca7b24 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Area.java +++ b/Core/src/main/java/com/plotsquared/core/command/Area.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Argument.java b/Core/src/main/java/com/plotsquared/core/command/Argument.java index 3ccd4aed3..e2a011fc0 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Argument.java +++ b/Core/src/main/java/com/plotsquared/core/command/Argument.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.plot.PlotId; diff --git a/Core/src/main/java/com/plotsquared/core/command/Auto.java b/Core/src/main/java/com/plotsquared/core/command/Auto.java index 6cdbdf627..a1055f9fb 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Auto.java +++ b/Core/src/main/java/com/plotsquared/core/command/Auto.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.common.reflect.TypeToken; diff --git a/Core/src/main/java/com/plotsquared/core/command/Backup.java b/Core/src/main/java/com/plotsquared/core/command/Backup.java index 5ba71cc03..241025352 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Backup.java +++ b/Core/src/main/java/com/plotsquared/core/command/Backup.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Biome.java b/Core/src/main/java/com/plotsquared/core/command/Biome.java index de6c46fbb..36792bcf1 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Biome.java +++ b/Core/src/main/java/com/plotsquared/core/command/Biome.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Buy.java b/Core/src/main/java/com/plotsquared/core/command/Buy.java index a4326112a..6efabe319 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Buy.java +++ b/Core/src/main/java/com/plotsquared/core/command/Buy.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Caps.java b/Core/src/main/java/com/plotsquared/core/command/Caps.java index 9f495cd9c..b7907dc28 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Caps.java +++ b/Core/src/main/java/com/plotsquared/core/command/Caps.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Chat.java b/Core/src/main/java/com/plotsquared/core/command/Chat.java index e0f44813d..4670c29d0 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Chat.java +++ b/Core/src/main/java/com/plotsquared/core/command/Chat.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Claim.java b/Core/src/main/java/com/plotsquared/core/command/Claim.java index 50c6ebb6f..68c01a7d8 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Claim.java +++ b/Core/src/main/java/com/plotsquared/core/command/Claim.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Clear.java b/Core/src/main/java/com/plotsquared/core/command/Clear.java index da40ef248..1bd08050e 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Clear.java +++ b/Core/src/main/java/com/plotsquared/core/command/Clear.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Cluster.java b/Core/src/main/java/com/plotsquared/core/command/Cluster.java index 4a4ae37f2..949f60b10 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Cluster.java +++ b/Core/src/main/java/com/plotsquared/core/command/Cluster.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/command/CmdConfirm.java b/Core/src/main/java/com/plotsquared/core/command/CmdConfirm.java index 3b91d7cf1..d450a5866 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CmdConfirm.java +++ b/Core/src/main/java/com/plotsquared/core/command/CmdConfirm.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/CmdInstance.java b/Core/src/main/java/com/plotsquared/core/command/CmdInstance.java index b0a66685e..f0fe30b96 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CmdInstance.java +++ b/Core/src/main/java/com/plotsquared/core/command/CmdInstance.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; public class CmdInstance { diff --git a/Core/src/main/java/com/plotsquared/core/command/Command.java b/Core/src/main/java/com/plotsquared/core/command/Command.java index 006b93433..c40c37726 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Command.java +++ b/Core/src/main/java/com/plotsquared/core/command/Command.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/command/CommandCaller.java b/Core/src/main/java/com/plotsquared/core/command/CommandCaller.java index e2e804e68..ddcfe502e 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CommandCaller.java +++ b/Core/src/main/java/com/plotsquared/core/command/CommandCaller.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java b/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java index 5544edf6a..2e7dc5ee2 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java +++ b/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/command/CommandDeclaration.java b/Core/src/main/java/com/plotsquared/core/command/CommandDeclaration.java index 8213300f9..5b8b7d68d 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CommandDeclaration.java +++ b/Core/src/main/java/com/plotsquared/core/command/CommandDeclaration.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import java.lang.annotation.ElementType; diff --git a/Core/src/main/java/com/plotsquared/core/command/Comment.java b/Core/src/main/java/com/plotsquared/core/command/Comment.java index 25766f3f0..55b65b1b1 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Comment.java +++ b/Core/src/main/java/com/plotsquared/core/command/Comment.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/command/Condense.java b/Core/src/main/java/com/plotsquared/core/command/Condense.java index 01891ca56..26ecfe24e 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Condense.java +++ b/Core/src/main/java/com/plotsquared/core/command/Condense.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Confirm.java b/Core/src/main/java/com/plotsquared/core/command/Confirm.java index 9ed7b7f35..039bbcf64 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Confirm.java +++ b/Core/src/main/java/com/plotsquared/core/command/Confirm.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/command/Continue.java b/Core/src/main/java/com/plotsquared/core/command/Continue.java index 49ffeca04..347969d99 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Continue.java +++ b/Core/src/main/java/com/plotsquared/core/command/Continue.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Copy.java b/Core/src/main/java/com/plotsquared/core/command/Copy.java index 64ae43b8a..969f7d720 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Copy.java +++ b/Core/src/main/java/com/plotsquared/core/command/Copy.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.permissions.Permission; diff --git a/Core/src/main/java/com/plotsquared/core/command/CreateRoadSchematic.java b/Core/src/main/java/com/plotsquared/core/command/CreateRoadSchematic.java index da4d67b42..3cd003ca1 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CreateRoadSchematic.java +++ b/Core/src/main/java/com/plotsquared/core/command/CreateRoadSchematic.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java b/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java index 09382ca9a..2e10b72ee 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Debug.java b/Core/src/main/java/com/plotsquared/core/command/Debug.java index 67eb61d3f..8d06cf640 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Debug.java +++ b/Core/src/main/java/com/plotsquared/core/command/Debug.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugAllowUnsafe.java b/Core/src/main/java/com/plotsquared/core/command/DebugAllowUnsafe.java index 08948bc29..07f8a92c3 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugAllowUnsafe.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugAllowUnsafe.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugExec.java b/Core/src/main/java/com/plotsquared/core/command/DebugExec.java index c7fff2776..ee96594a5 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugExec.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugExec.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.common.io.Files; diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugImportWorlds.java b/Core/src/main/java/com/plotsquared/core/command/DebugImportWorlds.java index 22282d5e5..82a465697 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugImportWorlds.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugImportWorlds.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.common.base.Charsets; diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugLoadTest.java b/Core/src/main/java/com/plotsquared/core/command/DebugLoadTest.java index 00aa27558..4bfd67708 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugLoadTest.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugLoadTest.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java b/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java index 7d67e2b29..9dc44bf00 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.gson.JsonObject; diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugRoadRegen.java b/Core/src/main/java/com/plotsquared/core/command/DebugRoadRegen.java index d95bbff35..bf553283b 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugRoadRegen.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugRoadRegen.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugSaveTest.java b/Core/src/main/java/com/plotsquared/core/command/DebugSaveTest.java index 1274fb531..8001f565e 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugSaveTest.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugSaveTest.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Delete.java b/Core/src/main/java/com/plotsquared/core/command/Delete.java index 8bd023ef8..d26eb8dc4 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Delete.java +++ b/Core/src/main/java/com/plotsquared/core/command/Delete.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Deny.java b/Core/src/main/java/com/plotsquared/core/command/Deny.java index cfe357c42..e5420b9b4 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Deny.java +++ b/Core/src/main/java/com/plotsquared/core/command/Deny.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Desc.java b/Core/src/main/java/com/plotsquared/core/command/Desc.java index 24d3f165a..2ad3fd752 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Desc.java +++ b/Core/src/main/java/com/plotsquared/core/command/Desc.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Dislike.java b/Core/src/main/java/com/plotsquared/core/command/Dislike.java index 3e4db188c..76a90e290 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Dislike.java +++ b/Core/src/main/java/com/plotsquared/core/command/Dislike.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Done.java b/Core/src/main/java/com/plotsquared/core/command/Done.java index ab38a329b..4cc2e4afe 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Done.java +++ b/Core/src/main/java/com/plotsquared/core/command/Done.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Download.java b/Core/src/main/java/com/plotsquared/core/command/Download.java index b83eb4703..b45d719e4 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Download.java +++ b/Core/src/main/java/com/plotsquared/core/command/Download.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/FlagCommand.java b/Core/src/main/java/com/plotsquared/core/command/FlagCommand.java index b383a0db9..26120dec1 100644 --- a/Core/src/main/java/com/plotsquared/core/command/FlagCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/FlagCommand.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/command/Grant.java b/Core/src/main/java/com/plotsquared/core/command/Grant.java index a40c45ca8..00951a2e0 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Grant.java +++ b/Core/src/main/java/com/plotsquared/core/command/Grant.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.common.primitives.Ints; diff --git a/Core/src/main/java/com/plotsquared/core/command/Help.java b/Core/src/main/java/com/plotsquared/core/command/Help.java index 8ec4f7e40..0996582f1 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Help.java +++ b/Core/src/main/java/com/plotsquared/core/command/Help.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.StaticCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java b/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java index 70058cf09..c55f3abce 100644 --- a/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Inbox.java b/Core/src/main/java/com/plotsquared/core/command/Inbox.java index b722c2caa..9d36f36c5 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Inbox.java +++ b/Core/src/main/java/com/plotsquared/core/command/Inbox.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.TypeLiteral; diff --git a/Core/src/main/java/com/plotsquared/core/command/Info.java b/Core/src/main/java/com/plotsquared/core/command/Info.java index dde661891..a2cccd0c0 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Info.java +++ b/Core/src/main/java/com/plotsquared/core/command/Info.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.permissions.Permission; diff --git a/Core/src/main/java/com/plotsquared/core/command/Kick.java b/Core/src/main/java/com/plotsquared/core/command/Kick.java index 11fb6352e..799df3029 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Kick.java +++ b/Core/src/main/java/com/plotsquared/core/command/Kick.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Leave.java b/Core/src/main/java/com/plotsquared/core/command/Leave.java index 7afa25ff7..643fb20f3 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Leave.java +++ b/Core/src/main/java/com/plotsquared/core/command/Leave.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Like.java b/Core/src/main/java/com/plotsquared/core/command/Like.java index 199bd09e3..265a3f252 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Like.java +++ b/Core/src/main/java/com/plotsquared/core/command/Like.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/ListCmd.java b/Core/src/main/java/com/plotsquared/core/command/ListCmd.java index a396b010e..803481e83 100644 --- a/Core/src/main/java/com/plotsquared/core/command/ListCmd.java +++ b/Core/src/main/java/com/plotsquared/core/command/ListCmd.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Load.java b/Core/src/main/java/com/plotsquared/core/command/Load.java index 585a41234..5c4c91878 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Load.java +++ b/Core/src/main/java/com/plotsquared/core/command/Load.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/MainCommand.java b/Core/src/main/java/com/plotsquared/core/command/MainCommand.java index b90588562..aa1cec435 100644 --- a/Core/src/main/java/com/plotsquared/core/command/MainCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/MainCommand.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Injector; diff --git a/Core/src/main/java/com/plotsquared/core/command/Merge.java b/Core/src/main/java/com/plotsquared/core/command/Merge.java index cbc59fc8f..18e232024 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Merge.java +++ b/Core/src/main/java/com/plotsquared/core/command/Merge.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Middle.java b/Core/src/main/java/com/plotsquared/core/command/Middle.java index a8342c6df..989faa47d 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Middle.java +++ b/Core/src/main/java/com/plotsquared/core/command/Middle.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Move.java b/Core/src/main/java/com/plotsquared/core/command/Move.java index e4c2a64d3..564a2dac3 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Move.java +++ b/Core/src/main/java/com/plotsquared/core/command/Move.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Music.java b/Core/src/main/java/com/plotsquared/core/command/Music.java index ffab80dcf..5fb78f888 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Music.java +++ b/Core/src/main/java/com/plotsquared/core/command/Music.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Near.java b/Core/src/main/java/com/plotsquared/core/command/Near.java index e14b14ddc..928640f18 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Near.java +++ b/Core/src/main/java/com/plotsquared/core/command/Near.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Owner.java b/Core/src/main/java/com/plotsquared/core/command/Owner.java index c29034584..e6f954d7c 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Owner.java +++ b/Core/src/main/java/com/plotsquared/core/command/Owner.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java b/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java index 695b045f6..1a7fc50df 100644 --- a/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java +++ b/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/command/Purge.java b/Core/src/main/java/com/plotsquared/core/command/Purge.java index 2d75807b8..b2c50d1f4 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Purge.java +++ b/Core/src/main/java/com/plotsquared/core/command/Purge.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Rate.java b/Core/src/main/java/com/plotsquared/core/command/Rate.java index 035ed41d3..9d4286dd6 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Rate.java +++ b/Core/src/main/java/com/plotsquared/core/command/Rate.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/RegenAllRoads.java b/Core/src/main/java/com/plotsquared/core/command/RegenAllRoads.java index 1583e19d2..bf84f4524 100644 --- a/Core/src/main/java/com/plotsquared/core/command/RegenAllRoads.java +++ b/Core/src/main/java/com/plotsquared/core/command/RegenAllRoads.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Relight.java b/Core/src/main/java/com/plotsquared/core/command/Relight.java index 184a99571..c6e891e4b 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Relight.java +++ b/Core/src/main/java/com/plotsquared/core/command/Relight.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Reload.java b/Core/src/main/java/com/plotsquared/core/command/Reload.java index 1d4e1298d..9bc0fb071 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Reload.java +++ b/Core/src/main/java/com/plotsquared/core/command/Reload.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Remove.java b/Core/src/main/java/com/plotsquared/core/command/Remove.java index aeee2a30d..8a56fcf31 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Remove.java +++ b/Core/src/main/java/com/plotsquared/core/command/Remove.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/RequiredType.java b/Core/src/main/java/com/plotsquared/core/command/RequiredType.java index e09866aca..8ee8aed2a 100644 --- a/Core/src/main/java/com/plotsquared/core/command/RequiredType.java +++ b/Core/src/main/java/com/plotsquared/core/command/RequiredType.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Save.java b/Core/src/main/java/com/plotsquared/core/command/Save.java index 636096943..d98cf9744 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Save.java +++ b/Core/src/main/java/com/plotsquared/core/command/Save.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/SchematicCmd.java b/Core/src/main/java/com/plotsquared/core/command/SchematicCmd.java index 2146c81ab..3737ad407 100644 --- a/Core/src/main/java/com/plotsquared/core/command/SchematicCmd.java +++ b/Core/src/main/java/com/plotsquared/core/command/SchematicCmd.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.common.collect.Lists; diff --git a/Core/src/main/java/com/plotsquared/core/command/Set.java b/Core/src/main/java/com/plotsquared/core/command/Set.java index 11015b70d..cf018dcbf 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Set.java +++ b/Core/src/main/java/com/plotsquared/core/command/Set.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/SetCommand.java b/Core/src/main/java/com/plotsquared/core/command/SetCommand.java index 025baee87..adf60f645 100644 --- a/Core/src/main/java/com/plotsquared/core/command/SetCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/SetCommand.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/SetHome.java b/Core/src/main/java/com/plotsquared/core/command/SetHome.java index 95940ea39..e1b811654 100644 --- a/Core/src/main/java/com/plotsquared/core/command/SetHome.java +++ b/Core/src/main/java/com/plotsquared/core/command/SetHome.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Setup.java b/Core/src/main/java/com/plotsquared/core/command/Setup.java index eb870880b..950450775 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Setup.java +++ b/Core/src/main/java/com/plotsquared/core/command/Setup.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/SubCommand.java b/Core/src/main/java/com/plotsquared/core/command/SubCommand.java index 7b6768270..3920229c7 100644 --- a/Core/src/main/java/com/plotsquared/core/command/SubCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/SubCommand.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/command/Swap.java b/Core/src/main/java/com/plotsquared/core/command/Swap.java index 6bb379c6c..86883a6d0 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Swap.java +++ b/Core/src/main/java/com/plotsquared/core/command/Swap.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.permissions.Permission; diff --git a/Core/src/main/java/com/plotsquared/core/command/Target.java b/Core/src/main/java/com/plotsquared/core/command/Target.java index eccb5056a..f34aa87e1 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Target.java +++ b/Core/src/main/java/com/plotsquared/core/command/Target.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Template.java b/Core/src/main/java/com/plotsquared/core/command/Template.java index a384c74ac..5bb1dcffe 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Template.java +++ b/Core/src/main/java/com/plotsquared/core/command/Template.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Toggle.java b/Core/src/main/java/com/plotsquared/core/command/Toggle.java index 643d9e5a4..e9a434810 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Toggle.java +++ b/Core/src/main/java/com/plotsquared/core/command/Toggle.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Trim.java b/Core/src/main/java/com/plotsquared/core/command/Trim.java index 7116f588c..3111ef7c1 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Trim.java +++ b/Core/src/main/java/com/plotsquared/core/command/Trim.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Trust.java b/Core/src/main/java/com/plotsquared/core/command/Trust.java index 965315f5a..506b21d77 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Trust.java +++ b/Core/src/main/java/com/plotsquared/core/command/Trust.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Unlink.java b/Core/src/main/java/com/plotsquared/core/command/Unlink.java index 1ee3fe370..d0e28012e 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Unlink.java +++ b/Core/src/main/java/com/plotsquared/core/command/Unlink.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Visit.java b/Core/src/main/java/com/plotsquared/core/command/Visit.java index b75182ee0..89647a8b1 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Visit.java +++ b/Core/src/main/java/com/plotsquared/core/command/Visit.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/WE_Anywhere.java b/Core/src/main/java/com/plotsquared/core/command/WE_Anywhere.java index 110a67cdc..2cc6fd7e9 100644 --- a/Core/src/main/java/com/plotsquared/core/command/WE_Anywhere.java +++ b/Core/src/main/java/com/plotsquared/core/command/WE_Anywhere.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.command; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/components/ComponentCommand.java b/Core/src/main/java/com/plotsquared/core/components/ComponentCommand.java index c2f45b58e..01aefd096 100644 --- a/Core/src/main/java/com/plotsquared/core/components/ComponentCommand.java +++ b/Core/src/main/java/com/plotsquared/core/components/ComponentCommand.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.components; import com.plotsquared.core.command.CommandCategory; diff --git a/Core/src/main/java/com/plotsquared/core/components/ComponentPreset.java b/Core/src/main/java/com/plotsquared/core/components/ComponentPreset.java index 298d122a2..fa278466d 100644 --- a/Core/src/main/java/com/plotsquared/core/components/ComponentPreset.java +++ b/Core/src/main/java/com/plotsquared/core/components/ComponentPreset.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.components; import com.plotsquared.core.configuration.serialization.ConfigurationSerializable; diff --git a/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java b/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java index e775892da..04877022f 100644 --- a/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java +++ b/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.components; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Config.java b/Core/src/main/java/com/plotsquared/core/configuration/Config.java index 7ae47fab6..70439d2a7 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Config.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Config.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration; import com.plotsquared.core.configuration.Settings.Enabled_Components; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Configuration.java b/Core/src/main/java/com/plotsquared/core/configuration/Configuration.java index 207262133..2db9acb30 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Configuration.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Configuration.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration; import java.util.Map; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationNode.java b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationNode.java index 71d9399c0..e8c8bc355 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationNode.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationNode.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration; import com.plotsquared.core.plot.BlockBucket; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationOptions.java b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationOptions.java index b7f4c457a..1c6a0db9f 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationOptions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationOptions.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration; /** diff --git a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationSection.java b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationSection.java index 8cc73f860..2f319d08f 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationSection.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationSection.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration; import java.util.List; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationUtil.java b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationUtil.java index 2e2444bbc..5cb0effb4 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationUtil.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration; import com.plotsquared.core.plot.BlockBucket; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/InvalidConfigurationException.java b/Core/src/main/java/com/plotsquared/core/configuration/InvalidConfigurationException.java index 5b87b8e18..5044cd31b 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/InvalidConfigurationException.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/InvalidConfigurationException.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration; /** diff --git a/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfiguration.java b/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfiguration.java index 0e1ac50e4..8c40407fb 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfiguration.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfiguration.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration; import java.util.Map; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfigurationOptions.java b/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfigurationOptions.java index b0f0833cc..5b0712d0b 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfigurationOptions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfigurationOptions.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration; /** diff --git a/Core/src/main/java/com/plotsquared/core/configuration/MemorySection.java b/Core/src/main/java/com/plotsquared/core/configuration/MemorySection.java index 561947288..e5feb770f 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/MemorySection.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/MemorySection.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration; import java.util.ArrayList; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java index 6c8b4cb58..dd3f573c5 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration; import com.plotsquared.core.configuration.file.YamlConfiguration; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Storage.java b/Core/src/main/java/com/plotsquared/core/configuration/Storage.java index 4a3bc2626..29e8a19f7 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Storage.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Storage.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration; import java.io.File; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/Caption.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/Caption.java index f826b7ed2..b2d5d7d1f 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/Caption.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/Caption.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; import com.plotsquared.core.configuration.caption.LocaleHolder; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionHolder.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionHolder.java index 347c8e0fb..9bd5c74d0 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionHolder.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionHolder.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; public class CaptionHolder { diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionLoader.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionLoader.java index 0e2d65c7f..187914013 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionLoader.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionLoader.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; import com.google.common.reflect.TypeToken; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionMap.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionMap.java index 02538ce08..e72a3fd7c 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionMap.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionMap.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionUtility.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionUtility.java index 22214266e..dc0a5458d 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionUtility.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionUtility.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/ChatFormatter.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/ChatFormatter.java index ab886af1d..b3b543fad 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/ChatFormatter.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/ChatFormatter.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/DummyCaptionMap.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/DummyCaptionMap.java index 4e6274fcc..2a361b472 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/DummyCaptionMap.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/DummyCaptionMap.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/LocaleHolder.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/LocaleHolder.java index 1974abdb8..62948635c 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/LocaleHolder.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/LocaleHolder.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; import com.plotsquared.core.player.ConsolePlayer; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/LocalizedCaptionMap.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/LocalizedCaptionMap.java index 8412e21c9..51dfbdc2c 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/LocalizedCaptionMap.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/LocalizedCaptionMap.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; import com.google.common.collect.ImmutableMap; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/NamespacedCaption.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/NamespacedCaption.java index 28167bf73..11bd17cbc 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/NamespacedCaption.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/NamespacedCaption.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/PerUserLocaleCaptionMap.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/PerUserLocaleCaptionMap.java index 83e2814cc..0c63b59b8 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/PerUserLocaleCaptionMap.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/PerUserLocaleCaptionMap.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/PlotSquaredChatFormatter.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/PlotSquaredChatFormatter.java index 0b677ad38..e6a499784 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/PlotSquaredChatFormatter.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/PlotSquaredChatFormatter.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/StaticCaption.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/StaticCaption.java index cdc2cc309..d330479dc 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/StaticCaption.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/StaticCaption.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/Templates.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/Templates.java index 0fe96f0bd..1677dfe8e 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/Templates.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/Templates.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; import com.plotsquared.core.plot.PlotArea; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/TranslatableCaption.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/TranslatableCaption.java index a31a5df46..9eb6a43a7 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/TranslatableCaption.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/TranslatableCaption.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.caption; import com.google.common.base.Objects; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfiguration.java b/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfiguration.java index 6fe3881ae..14b16ca47 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfiguration.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfiguration.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.file; import com.plotsquared.core.configuration.Configuration; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfigurationOptions.java b/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfigurationOptions.java index 47a2e10d5..4160b5709 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfigurationOptions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfigurationOptions.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.file; import com.plotsquared.core.configuration.Configuration; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfiguration.java b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfiguration.java index 3dd6c31c5..09c37d869 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfiguration.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfiguration.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.file; import com.plotsquared.core.configuration.Configuration; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfigurationOptions.java b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfigurationOptions.java index 58f111d4d..4b288f80d 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfigurationOptions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfigurationOptions.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.file; /** diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConstructor.java b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConstructor.java index 55642ea97..84cf36b6d 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConstructor.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConstructor.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.file; import com.plotsquared.core.configuration.serialization.ConfigurationSerialization; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlRepresenter.java b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlRepresenter.java index 6e7c6fc94..42f3c3146 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlRepresenter.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlRepresenter.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.file; import com.plotsquared.core.configuration.ConfigurationSection; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerializable.java b/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerializable.java index 780943325..16f5f3868 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerializable.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerializable.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.serialization; import java.util.Map; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerialization.java b/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerialization.java index 9ce425a8e..4431a41a4 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerialization.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerialization.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.serialization; import com.plotsquared.core.configuration.Configuration; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/serialization/DelegateDeserialization.java b/Core/src/main/java/com/plotsquared/core/configuration/serialization/DelegateDeserialization.java index d53a56245..a9da039bf 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/serialization/DelegateDeserialization.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/serialization/DelegateDeserialization.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.serialization; import java.lang.annotation.ElementType; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/serialization/SerializableAs.java b/Core/src/main/java/com/plotsquared/core/configuration/serialization/SerializableAs.java index 1b27fa764..db4726d0f 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/serialization/SerializableAs.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/serialization/SerializableAs.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.configuration.serialization; import java.lang.annotation.ElementType; diff --git a/Core/src/main/java/com/plotsquared/core/database/AbstractDB.java b/Core/src/main/java/com/plotsquared/core/database/AbstractDB.java index 1ba59ecdd..b0d295f3f 100644 --- a/Core/src/main/java/com/plotsquared/core/database/AbstractDB.java +++ b/Core/src/main/java/com/plotsquared/core/database/AbstractDB.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.database; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/database/DBFunc.java b/Core/src/main/java/com/plotsquared/core/database/DBFunc.java index 501da4284..86173a6c9 100644 --- a/Core/src/main/java/com/plotsquared/core/database/DBFunc.java +++ b/Core/src/main/java/com/plotsquared/core/database/DBFunc.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.database; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/database/Database.java b/Core/src/main/java/com/plotsquared/core/database/Database.java index ff56af689..ce2a6194c 100644 --- a/Core/src/main/java/com/plotsquared/core/database/Database.java +++ b/Core/src/main/java/com/plotsquared/core/database/Database.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.database; import java.sql.Connection; diff --git a/Core/src/main/java/com/plotsquared/core/database/MySQL.java b/Core/src/main/java/com/plotsquared/core/database/MySQL.java index 5c10c6bd5..788a66224 100644 --- a/Core/src/main/java/com/plotsquared/core/database/MySQL.java +++ b/Core/src/main/java/com/plotsquared/core/database/MySQL.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.database; import com.plotsquared.core.configuration.Storage; diff --git a/Core/src/main/java/com/plotsquared/core/database/SQLManager.java b/Core/src/main/java/com/plotsquared/core/database/SQLManager.java index a17781d6c..a1471dfd3 100644 --- a/Core/src/main/java/com/plotsquared/core/database/SQLManager.java +++ b/Core/src/main/java/com/plotsquared/core/database/SQLManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.database; import com.google.common.base.Charsets; diff --git a/Core/src/main/java/com/plotsquared/core/database/SQLite.java b/Core/src/main/java/com/plotsquared/core/database/SQLite.java index a315949fb..4560728a8 100644 --- a/Core/src/main/java/com/plotsquared/core/database/SQLite.java +++ b/Core/src/main/java/com/plotsquared/core/database/SQLite.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.database; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/database/StmtMod.java b/Core/src/main/java/com/plotsquared/core/database/StmtMod.java index 83b707e27..011b6acec 100644 --- a/Core/src/main/java/com/plotsquared/core/database/StmtMod.java +++ b/Core/src/main/java/com/plotsquared/core/database/StmtMod.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.database; import com.plotsquared.core.util.StringMan; diff --git a/Core/src/main/java/com/plotsquared/core/events/CancellablePlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/CancellablePlotEvent.java index 2ece5b574..0e51d8e20 100644 --- a/Core/src/main/java/com/plotsquared/core/events/CancellablePlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/CancellablePlotEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; /** diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerAutoPlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerAutoPlotEvent.java index b397321bb..983f1328f 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerAutoPlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerAutoPlotEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.command.Claim; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerClaimPlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerClaimPlotEvent.java index 518d79e5b..e18d5da4f 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerClaimPlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerClaimPlotEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.command.Claim; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerEnterPlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerEnterPlotEvent.java index cb16e2ded..c7ff5c6ec 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerEnterPlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerEnterPlotEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerLeavePlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerLeavePlotEvent.java index 1d7a34619..d720e4900 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerLeavePlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerLeavePlotEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotDeniedEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotDeniedEvent.java index 1a982313b..9b1b2993a 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotDeniedEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotDeniedEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotHelperEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotHelperEvent.java index 4858f7484..dfce59719 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotHelperEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotHelperEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotTrustedEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotTrustedEvent.java index e9bf0cb31..d859cff5c 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotTrustedEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotTrustedEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerTeleportToPlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerTeleportToPlotEvent.java index 6d23706e3..baac1e8c3 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerTeleportToPlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerTeleportToPlotEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotAutoMergeEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotAutoMergeEvent.java index d41115df8..3f9e769ff 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotAutoMergeEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotAutoMergeEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotChangeOwnerEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotChangeOwnerEvent.java index bb934abcd..1549ca6d1 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotChangeOwnerEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotChangeOwnerEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotClearEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotClearEvent.java index 482cc1781..4ef667601 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotClearEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotClearEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotComponentSetEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotComponentSetEvent.java index 1d25e6751..dcdd2c5de 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotComponentSetEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotComponentSetEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotDeleteEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotDeleteEvent.java index 5b37111d5..cd6c6713e 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotDeleteEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotDeleteEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotDoneEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotDoneEvent.java index fd873dd61..22b60b025 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotDoneEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotDoneEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotEvent.java index 3f9bb1e87..14c7c133d 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotFlagAddEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotFlagAddEvent.java index 68c3f2e4b..21dc8fe14 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotFlagAddEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotFlagAddEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotFlagEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotFlagEvent.java index 6d222ee97..fb6f77500 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotFlagEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotFlagEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotFlagRemoveEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotFlagRemoveEvent.java index 968d80eee..a898fcde7 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotFlagRemoveEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotFlagRemoveEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotMergeEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotMergeEvent.java index 36e70328a..4638020f1 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotMergeEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotMergeEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.location.Direction; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotPlayerEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotPlayerEvent.java index cb34a6403..0bdc27c33 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotPlayerEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotPlayerEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotRateEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotRateEvent.java index 047ee5d8a..35a547057 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotRateEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotRateEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotUnlinkEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotUnlinkEvent.java index 4065773d7..53c700135 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotUnlinkEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotUnlinkEvent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/Result.java b/Core/src/main/java/com/plotsquared/core/events/Result.java index cfabc02c0..50a6d8a8b 100644 --- a/Core/src/main/java/com/plotsquared/core/events/Result.java +++ b/Core/src/main/java/com/plotsquared/core/events/Result.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; import java.util.HashMap; diff --git a/Core/src/main/java/com/plotsquared/core/events/TeleportCause.java b/Core/src/main/java/com/plotsquared/core/events/TeleportCause.java index 33f103107..ab80b99c8 100644 --- a/Core/src/main/java/com/plotsquared/core/events/TeleportCause.java +++ b/Core/src/main/java/com/plotsquared/core/events/TeleportCause.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.events; public enum TeleportCause { diff --git a/Core/src/main/java/com/plotsquared/core/generator/AugmentedUtils.java b/Core/src/main/java/com/plotsquared/core/generator/AugmentedUtils.java index f800d3c2c..f02ddf229 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/AugmentedUtils.java +++ b/Core/src/main/java/com/plotsquared/core/generator/AugmentedUtils.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManager.java b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManager.java index ca8b5013a..9c59875c5 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManagerComponent.java b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManagerComponent.java index 08288df67..7620e0b6d 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManagerComponent.java +++ b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManagerComponent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java index cffc9c4f7..dd7ace66a 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import com.plotsquared.core.configuration.ConfigurationNode; diff --git a/Core/src/main/java/com/plotsquared/core/generator/GeneratorWrapper.java b/Core/src/main/java/com/plotsquared/core/generator/GeneratorWrapper.java index 191460b80..82fa1f2be 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/GeneratorWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/generator/GeneratorWrapper.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import com.plotsquared.core.plot.PlotArea; diff --git a/Core/src/main/java/com/plotsquared/core/generator/GridPlotManager.java b/Core/src/main/java/com/plotsquared/core/generator/GridPlotManager.java index 7d088b3c2..6e0ca22a9 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/GridPlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/generator/GridPlotManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import com.plotsquared.core.plot.PlotArea; diff --git a/Core/src/main/java/com/plotsquared/core/generator/GridPlotWorld.java b/Core/src/main/java/com/plotsquared/core/generator/GridPlotWorld.java index 8a0fda080..dd2f1b6a6 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/GridPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/generator/GridPlotWorld.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import com.plotsquared.core.configuration.file.YamlConfiguration; 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 dd3730b20..080a85f51 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/HybridGen.java +++ b/Core/src/main/java/com/plotsquared/core/generator/HybridGen.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java b/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java index 95d330057..4d5cc903a 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import com.google.common.collect.Sets; diff --git a/Core/src/main/java/com/plotsquared/core/generator/HybridPlotWorld.java b/Core/src/main/java/com/plotsquared/core/generator/HybridPlotWorld.java index cff9f47d9..289f09f2a 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/HybridPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/generator/HybridPlotWorld.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import com.google.inject.assistedinject.Assisted; diff --git a/Core/src/main/java/com/plotsquared/core/generator/HybridUtils.java b/Core/src/main/java/com/plotsquared/core/generator/HybridUtils.java index 0384f12ae..38dc7ccb7 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/HybridUtils.java +++ b/Core/src/main/java/com/plotsquared/core/generator/HybridUtils.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/generator/IndependentPlotGenerator.java b/Core/src/main/java/com/plotsquared/core/generator/IndependentPlotGenerator.java index 5baf54822..dbaac5e41 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/IndependentPlotGenerator.java +++ b/Core/src/main/java/com/plotsquared/core/generator/IndependentPlotGenerator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/generator/SingleWorldGenerator.java b/Core/src/main/java/com/plotsquared/core/generator/SingleWorldGenerator.java index 7f7f351d2..1761d30a5 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/SingleWorldGenerator.java +++ b/Core/src/main/java/com/plotsquared/core/generator/SingleWorldGenerator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java b/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java index 54104cae5..bd1d49551 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import com.plotsquared.core.location.Direction; diff --git a/Core/src/main/java/com/plotsquared/core/generator/SquarePlotWorld.java b/Core/src/main/java/com/plotsquared/core/generator/SquarePlotWorld.java index cf44fc2d3..95597aa7b 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/SquarePlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/generator/SquarePlotWorld.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.generator; import com.plotsquared.core.configuration.ConfigurationSection; diff --git a/Core/src/main/java/com/plotsquared/core/inject/annotations/BackgroundPipeline.java b/Core/src/main/java/com/plotsquared/core/inject/annotations/BackgroundPipeline.java index a5fdfc228..33960cb33 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/annotations/BackgroundPipeline.java +++ b/Core/src/main/java/com/plotsquared/core/inject/annotations/BackgroundPipeline.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.inject.annotations; import com.google.inject.BindingAnnotation; diff --git a/Core/src/main/java/com/plotsquared/core/inject/annotations/ConfigFile.java b/Core/src/main/java/com/plotsquared/core/inject/annotations/ConfigFile.java index bdcd123b1..8e07135bd 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/annotations/ConfigFile.java +++ b/Core/src/main/java/com/plotsquared/core/inject/annotations/ConfigFile.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.inject.annotations; import com.google.inject.BindingAnnotation; diff --git a/Core/src/main/java/com/plotsquared/core/inject/annotations/ConsoleActor.java b/Core/src/main/java/com/plotsquared/core/inject/annotations/ConsoleActor.java index 692adc964..db7361c7f 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/annotations/ConsoleActor.java +++ b/Core/src/main/java/com/plotsquared/core/inject/annotations/ConsoleActor.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.inject.annotations; import com.google.inject.BindingAnnotation; diff --git a/Core/src/main/java/com/plotsquared/core/inject/annotations/DefaultGenerator.java b/Core/src/main/java/com/plotsquared/core/inject/annotations/DefaultGenerator.java index 7a0923106..5130b031c 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/annotations/DefaultGenerator.java +++ b/Core/src/main/java/com/plotsquared/core/inject/annotations/DefaultGenerator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.inject.annotations; import com.google.inject.BindingAnnotation; diff --git a/Core/src/main/java/com/plotsquared/core/inject/annotations/ImpromptuPipeline.java b/Core/src/main/java/com/plotsquared/core/inject/annotations/ImpromptuPipeline.java index a921cfb97..5458e7547 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/annotations/ImpromptuPipeline.java +++ b/Core/src/main/java/com/plotsquared/core/inject/annotations/ImpromptuPipeline.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.inject.annotations; import com.google.inject.BindingAnnotation; diff --git a/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldConfig.java b/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldConfig.java index 35a718678..1a0b31ad9 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldConfig.java +++ b/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldConfig.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.inject.annotations; import com.google.inject.BindingAnnotation; diff --git a/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldFile.java b/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldFile.java index d56d6bac4..5de6bd6d3 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldFile.java +++ b/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldFile.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.inject.annotations; import com.google.inject.BindingAnnotation; diff --git a/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorBuilderFactory.java b/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorBuilderFactory.java index 95d9ce52b..e679cc829 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorBuilderFactory.java +++ b/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorBuilderFactory.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.inject.factory; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorFactory.java b/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorFactory.java index cda2e8e34..285066eb7 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorFactory.java +++ b/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorFactory.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.inject.factory; import com.plotsquared.core.queue.ChunkCoordinator; diff --git a/Core/src/main/java/com/plotsquared/core/inject/factory/HybridPlotWorldFactory.java b/Core/src/main/java/com/plotsquared/core/inject/factory/HybridPlotWorldFactory.java index 4fde7bcbf..c5edadd32 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/factory/HybridPlotWorldFactory.java +++ b/Core/src/main/java/com/plotsquared/core/inject/factory/HybridPlotWorldFactory.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.inject.factory; import com.google.inject.assistedinject.Assisted; diff --git a/Core/src/main/java/com/plotsquared/core/inject/factory/PlayerBackupProfileFactory.java b/Core/src/main/java/com/plotsquared/core/inject/factory/PlayerBackupProfileFactory.java index 72a3adb20..6750fccff 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/factory/PlayerBackupProfileFactory.java +++ b/Core/src/main/java/com/plotsquared/core/inject/factory/PlayerBackupProfileFactory.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.inject.factory; import com.plotsquared.core.backup.PlayerBackupProfile; diff --git a/Core/src/main/java/com/plotsquared/core/inject/modules/PlotSquaredModule.java b/Core/src/main/java/com/plotsquared/core/inject/modules/PlotSquaredModule.java index 82c5549c3..79b081d5c 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/modules/PlotSquaredModule.java +++ b/Core/src/main/java/com/plotsquared/core/inject/modules/PlotSquaredModule.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.inject.modules; import com.google.inject.AbstractModule; diff --git a/Core/src/main/java/com/plotsquared/core/listener/ExtentWrapper.java b/Core/src/main/java/com/plotsquared/core/listener/ExtentWrapper.java index 85e8704fd..a95461727 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/ExtentWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/listener/ExtentWrapper.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.listener; import com.sk89q.worldedit.extent.AbstractDelegateExtent; diff --git a/Core/src/main/java/com/plotsquared/core/listener/PlayerBlockEventType.java b/Core/src/main/java/com/plotsquared/core/listener/PlayerBlockEventType.java index c31f0be29..f7974ea22 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/PlayerBlockEventType.java +++ b/Core/src/main/java/com/plotsquared/core/listener/PlayerBlockEventType.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.listener; public enum PlayerBlockEventType { diff --git a/Core/src/main/java/com/plotsquared/core/listener/PlotListener.java b/Core/src/main/java/com/plotsquared/core/listener/PlotListener.java index 71fe1e28b..6064598f5 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/PlotListener.java +++ b/Core/src/main/java/com/plotsquared/core/listener/PlotListener.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.listener; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/listener/ProcessedWEExtent.java b/Core/src/main/java/com/plotsquared/core/listener/ProcessedWEExtent.java index 58a302d42..87e4697ab 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/ProcessedWEExtent.java +++ b/Core/src/main/java/com/plotsquared/core/listener/ProcessedWEExtent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.listener; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/listener/WEExtent.java b/Core/src/main/java/com/plotsquared/core/listener/WEExtent.java index eeca518a8..8fafab407 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/WEExtent.java +++ b/Core/src/main/java/com/plotsquared/core/listener/WEExtent.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.listener; import com.plotsquared.core.util.WEManager; diff --git a/Core/src/main/java/com/plotsquared/core/listener/WESubscriber.java b/Core/src/main/java/com/plotsquared/core/listener/WESubscriber.java index c70a974b4..da8581f89 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/WESubscriber.java +++ b/Core/src/main/java/com/plotsquared/core/listener/WESubscriber.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.listener; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/location/BlockLoc.java b/Core/src/main/java/com/plotsquared/core/location/BlockLoc.java index afe47a69d..88dc520d5 100644 --- a/Core/src/main/java/com/plotsquared/core/location/BlockLoc.java +++ b/Core/src/main/java/com/plotsquared/core/location/BlockLoc.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.location; public class BlockLoc { diff --git a/Core/src/main/java/com/plotsquared/core/location/ChunkWrapper.java b/Core/src/main/java/com/plotsquared/core/location/ChunkWrapper.java index 5861a8c52..b9ba726e9 100644 --- a/Core/src/main/java/com/plotsquared/core/location/ChunkWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/location/ChunkWrapper.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.location; import com.plotsquared.core.util.MathMan; diff --git a/Core/src/main/java/com/plotsquared/core/location/Direction.java b/Core/src/main/java/com/plotsquared/core/location/Direction.java index ad0741408..f04bc2aa1 100644 --- a/Core/src/main/java/com/plotsquared/core/location/Direction.java +++ b/Core/src/main/java/com/plotsquared/core/location/Direction.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.location; public enum Direction { diff --git a/Core/src/main/java/com/plotsquared/core/location/Location.java b/Core/src/main/java/com/plotsquared/core/location/Location.java index 603fb621c..30cfa84fc 100644 --- a/Core/src/main/java/com/plotsquared/core/location/Location.java +++ b/Core/src/main/java/com/plotsquared/core/location/Location.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.location; import com.google.common.base.Objects; diff --git a/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java b/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java index be257ce2d..29231d8a6 100644 --- a/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java +++ b/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.location; import com.plotsquared.core.util.StringMan; diff --git a/Core/src/main/java/com/plotsquared/core/location/World.java b/Core/src/main/java/com/plotsquared/core/location/World.java index 4d7e97162..9ffd5e1f2 100644 --- a/Core/src/main/java/com/plotsquared/core/location/World.java +++ b/Core/src/main/java/com/plotsquared/core/location/World.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.location; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/permissions/ConsolePermissionProfile.java b/Core/src/main/java/com/plotsquared/core/permissions/ConsolePermissionProfile.java index 41aea02e0..34906f0f8 100644 --- a/Core/src/main/java/com/plotsquared/core/permissions/ConsolePermissionProfile.java +++ b/Core/src/main/java/com/plotsquared/core/permissions/ConsolePermissionProfile.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.permissions; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/permissions/NullPermissionProfile.java b/Core/src/main/java/com/plotsquared/core/permissions/NullPermissionProfile.java index 8f214e969..87c35a551 100644 --- a/Core/src/main/java/com/plotsquared/core/permissions/NullPermissionProfile.java +++ b/Core/src/main/java/com/plotsquared/core/permissions/NullPermissionProfile.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.permissions; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/permissions/Permission.java b/Core/src/main/java/com/plotsquared/core/permissions/Permission.java index 27aa9fce8..a5e835990 100644 --- a/Core/src/main/java/com/plotsquared/core/permissions/Permission.java +++ b/Core/src/main/java/com/plotsquared/core/permissions/Permission.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.permissions; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/permissions/PermissionHandler.java b/Core/src/main/java/com/plotsquared/core/permissions/PermissionHandler.java index 645669614..fc6f43eea 100644 --- a/Core/src/main/java/com/plotsquared/core/permissions/PermissionHandler.java +++ b/Core/src/main/java/com/plotsquared/core/permissions/PermissionHandler.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.permissions; import com.plotsquared.core.player.OfflinePlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/permissions/PermissionHolder.java b/Core/src/main/java/com/plotsquared/core/permissions/PermissionHolder.java index 2f5aff9a9..a05cbdaf6 100644 --- a/Core/src/main/java/com/plotsquared/core/permissions/PermissionHolder.java +++ b/Core/src/main/java/com/plotsquared/core/permissions/PermissionHolder.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.permissions; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/permissions/PermissionProfile.java b/Core/src/main/java/com/plotsquared/core/permissions/PermissionProfile.java index 8bab5e1bd..9e21ee3b6 100644 --- a/Core/src/main/java/com/plotsquared/core/permissions/PermissionProfile.java +++ b/Core/src/main/java/com/plotsquared/core/permissions/PermissionProfile.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.permissions; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/player/ConsolePlayer.java b/Core/src/main/java/com/plotsquared/core/player/ConsolePlayer.java index e45566bd4..c71509add 100644 --- a/Core/src/main/java/com/plotsquared/core/player/ConsolePlayer.java +++ b/Core/src/main/java/com/plotsquared/core/player/ConsolePlayer.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.player; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/player/MetaDataAccess.java b/Core/src/main/java/com/plotsquared/core/player/MetaDataAccess.java index b3267a971..9f42270f8 100644 --- a/Core/src/main/java/com/plotsquared/core/player/MetaDataAccess.java +++ b/Core/src/main/java/com/plotsquared/core/player/MetaDataAccess.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.player; import com.plotsquared.core.synchronization.LockRepository; diff --git a/Core/src/main/java/com/plotsquared/core/player/MetaDataKey.java b/Core/src/main/java/com/plotsquared/core/player/MetaDataKey.java index d611196f2..c524b9c4d 100644 --- a/Core/src/main/java/com/plotsquared/core/player/MetaDataKey.java +++ b/Core/src/main/java/com/plotsquared/core/player/MetaDataKey.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.player; import com.google.common.base.Objects; diff --git a/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java b/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java index 7a75ac4be..d1ff62c9b 100644 --- a/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java +++ b/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.player; import com.plotsquared.core.permissions.PermissionHolder; diff --git a/Core/src/main/java/com/plotsquared/core/player/PersistentMetaDataAccess.java b/Core/src/main/java/com/plotsquared/core/player/PersistentMetaDataAccess.java index 59ffa843d..7f54ae0e8 100644 --- a/Core/src/main/java/com/plotsquared/core/player/PersistentMetaDataAccess.java +++ b/Core/src/main/java/com/plotsquared/core/player/PersistentMetaDataAccess.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.player; import com.plotsquared.core.synchronization.LockRepository; diff --git a/Core/src/main/java/com/plotsquared/core/player/PlayerMetaDataKeys.java b/Core/src/main/java/com/plotsquared/core/player/PlayerMetaDataKeys.java index 43fa20fdf..669193018 100644 --- a/Core/src/main/java/com/plotsquared/core/player/PlayerMetaDataKeys.java +++ b/Core/src/main/java/com/plotsquared/core/player/PlayerMetaDataKeys.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.player; import com.google.inject.TypeLiteral; diff --git a/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java b/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java index 5624f8ad8..6861be1d7 100644 --- a/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java +++ b/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.player; import com.google.common.base.Objects; diff --git a/Core/src/main/java/com/plotsquared/core/player/TemporaryMetaDataAccess.java b/Core/src/main/java/com/plotsquared/core/player/TemporaryMetaDataAccess.java index 52a9f5a3b..e86c43e6d 100644 --- a/Core/src/main/java/com/plotsquared/core/player/TemporaryMetaDataAccess.java +++ b/Core/src/main/java/com/plotsquared/core/player/TemporaryMetaDataAccess.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.player; import com.plotsquared.core.synchronization.LockRepository; diff --git a/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java b/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java index 027948fbe..d4951764d 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java +++ b/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.google.common.collect.ImmutableMap; diff --git a/Core/src/main/java/com/plotsquared/core/plot/Plot.java b/Core/src/main/java/com/plotsquared/core/plot/Plot.java index c2689461e..53a034ee6 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/Plot.java +++ b/Core/src/main/java/com/plotsquared/core/plot/Plot.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.google.common.collect.ImmutableSet; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java b/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java index 93545c0b6..1f846ac71 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.google.common.collect.ImmutableMap; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotAreaTerrainType.java b/Core/src/main/java/com/plotsquared/core/plot/PlotAreaTerrainType.java index b9971c054..3fe666e8a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotAreaTerrainType.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotAreaTerrainType.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import java.util.Map; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotAreaType.java b/Core/src/main/java/com/plotsquared/core/plot/PlotAreaType.java index f1471ea88..7d8f7d21f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotAreaType.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotAreaType.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotCluster.java b/Core/src/main/java/com/plotsquared/core/plot/PlotCluster.java index 9821e590e..7d34eb88f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotCluster.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotCluster.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotCommentContainer.java b/Core/src/main/java/com/plotsquared/core/plot/PlotCommentContainer.java index ecb73331f..2604657a5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotCommentContainer.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotCommentContainer.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.plotsquared.core.plot.comment.PlotComment; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotHandler.java b/Core/src/main/java/com/plotsquared/core/plot/PlotHandler.java index 37a916a3b..9047ad4e0 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotHandler.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotHandler.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import java.util.Set; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotId.java b/Core/src/main/java/com/plotsquared/core/plot/PlotId.java index 98a18dfa7..554197862 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotId.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotId.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.plotsquared.core.location.Direction; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java b/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java index 368b6922a..6029f45d7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.plotsquared.core.player.MetaDataAccess; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java b/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java index 1b42fa86f..86dda1e4c 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.sk89q.worldedit.world.block.BlockState; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotManager.java b/Core/src/main/java/com/plotsquared/core/plot/PlotManager.java index 21b810072..d6a38cee5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.plotsquared.core.command.Template; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotModificationManager.java b/Core/src/main/java/com/plotsquared/core/plot/PlotModificationManager.java index cf56fe1a3..cfc18ed86 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotModificationManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotModificationManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotSettings.java b/Core/src/main/java/com/plotsquared/core/plot/PlotSettings.java index 4b7d4ff46..1c91aa3a5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotSettings.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotSettings.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.google.common.collect.ImmutableList; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java b/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java index 9fda102f8..cf750955b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; public enum PlotWeather { diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotWorld.java b/Core/src/main/java/com/plotsquared/core/plot/PlotWorld.java index 6f60add1f..654dedc89 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotWorld.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/plot/Rating.java b/Core/src/main/java/com/plotsquared/core/plot/Rating.java index 902a4f7eb..0c8458cd0 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/Rating.java +++ b/Core/src/main/java/com/plotsquared/core/plot/Rating.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/CommentInbox.java b/Core/src/main/java/com/plotsquared/core/plot/comment/CommentInbox.java index d8b8076cd..ea0c17a1f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/CommentInbox.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/CommentInbox.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.comment; import com.plotsquared.core.database.DBFunc; diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/CommentManager.java b/Core/src/main/java/com/plotsquared/core/plot/comment/CommentManager.java index 28ecdba7b..0fb1a0a92 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/CommentManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/CommentManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.comment; import com.google.common.annotations.Beta; diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxOwner.java b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxOwner.java index 66f78ca42..46c505f26 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxOwner.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxOwner.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.comment; import com.plotsquared.core.database.DBFunc; diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxPublic.java b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxPublic.java index 85bf63b4d..70e5d56e7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxPublic.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxPublic.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.comment; import com.plotsquared.core.database.DBFunc; diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxReport.java b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxReport.java index 4cacf1dee..f9c42fd0a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxReport.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxReport.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.comment; import com.plotsquared.core.database.DBFunc; diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/PlotComment.java b/Core/src/main/java/com/plotsquared/core/plot/comment/PlotComment.java index 42256369d..ebeb63475 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/PlotComment.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/PlotComment.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.comment; import com.plotsquared.core.plot.PlotId; diff --git a/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpireManager.java b/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpireManager.java index 65e9c876c..2bb550744 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpireManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpireManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.expiration; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpiryTask.java b/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpiryTask.java index e8565d90c..7afc0c187 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpiryTask.java +++ b/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpiryTask.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.expiration; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/plot/expiration/PlotAnalysis.java b/Core/src/main/java/com/plotsquared/core/plot/expiration/PlotAnalysis.java index 191c67996..c6acda581 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/expiration/PlotAnalysis.java +++ b/Core/src/main/java/com/plotsquared/core/plot/expiration/PlotAnalysis.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.expiration; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/FlagContainer.java b/Core/src/main/java/com/plotsquared/core/plot/flag/FlagContainer.java index 887bf8968..92a1ef1ea 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/FlagContainer.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/FlagContainer.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/FlagParseException.java b/Core/src/main/java/com/plotsquared/core/plot/flag/FlagParseException.java index 2ca6f789e..eba85ae5e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/FlagParseException.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/FlagParseException.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java b/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java index 5afb173b0..e63df8809 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/InternalFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/InternalFlag.java index 70050a433..be7f4dda5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/InternalFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/InternalFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag; /** diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/PlotFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/PlotFlag.java index 0dc23f9e2..adc35f659 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/PlotFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/PlotFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnalysisFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnalysisFlag.java index 8fd629611..ffff7681a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnalysisFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnalysisFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalAttackFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalAttackFlag.java index ec4875653..2825cd2b9 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalAttackFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalAttackFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalCapFlag.java index ab0f9527f..e257499d3 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalCapFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalInteractFlag.java index f15f557fa..38e21e09d 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalInteractFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockBurnFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockBurnFlag.java index 66299e9dc..131b160a9 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockBurnFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockBurnFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockIgnitionFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockIgnitionFlag.java index 43fee6341..f4c25b458 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockIgnitionFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockIgnitionFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockedCmdsFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockedCmdsFlag.java index 6bfbb9a00..984602197 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockedCmdsFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockedCmdsFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BreakFlag.java index 89841fb03..d082b7f9e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BreakFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java index a58d332ff..2503799bd 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/CoralDryFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/CoralDryFlag.java index 7cf0090a5..a11ccea96 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/CoralDryFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/CoralDryFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyExitFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyExitFlag.java index 3a5c49403..096cbfc14 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyExitFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyExitFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyTeleportFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyTeleportFlag.java index e02cff6d7..51e8466b2 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyTeleportFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyTeleportFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DescriptionFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DescriptionFlag.java index ee4e74df2..939f4cedf 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DescriptionFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DescriptionFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DeviceInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DeviceInteractFlag.java index c18281591..fbe521b59 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DeviceInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DeviceInteractFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DisablePhysicsFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DisablePhysicsFlag.java index 2141d9841..842046114 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DisablePhysicsFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DisablePhysicsFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DoneFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DoneFlag.java index 1ca1cf2f5..9369ac941 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DoneFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DoneFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DropProtectionFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DropProtectionFlag.java index 08269845a..041eb95d8 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DropProtectionFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DropProtectionFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/EntityCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/EntityCapFlag.java index 8ff0cab67..eca1d92d3 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/EntityCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/EntityCapFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ExplosionFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ExplosionFlag.java index 3c3486e87..31fdcab12 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ExplosionFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ExplosionFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FarewellFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FarewellFlag.java index 796b98d26..2f55ef653 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FarewellFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FarewellFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FeedFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FeedFlag.java index aa5f2cb16..6d66c0e26 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FeedFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FeedFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FlyFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FlyFlag.java index 5116cb7ac..a9d5c9d62 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FlyFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FlyFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ForcefieldFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ForcefieldFlag.java index ee58a96f7..fc4d4834e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ForcefieldFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ForcefieldFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GamemodeFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GamemodeFlag.java index 242a01150..24e04320e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GamemodeFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GamemodeFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GrassGrowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GrassGrowFlag.java index c5b9223e5..1ca7593b5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GrassGrowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GrassGrowFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GreetingFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GreetingFlag.java index 263ef1435..b7f093335 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GreetingFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GreetingFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GuestGamemodeFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GuestGamemodeFlag.java index 903e911f2..05141f5d6 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GuestGamemodeFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GuestGamemodeFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingBreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingBreakFlag.java index f12e340ca..ae4d92de7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingBreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingBreakFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingPlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingPlaceFlag.java index 8a7f4c07a..2a79670a1 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingPlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingPlaceFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HealFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HealFlag.java index 9c3be3bad..f635bb67d 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HealFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HealFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HideInfoFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HideInfoFlag.java index 034a43591..1d1b7c4e2 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HideInfoFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HideInfoFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileAttackFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileAttackFlag.java index 29204642e..bd5407c71 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileAttackFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileAttackFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileCapFlag.java index 3340369ba..087114943 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileCapFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileInteractFlag.java index f7b06d719..4d4281ebe 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileInteractFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceFormFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceFormFlag.java index 6b22c5a36..56a0fdb68 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceFormFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceFormFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceMeltFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceMeltFlag.java index e48fa9010..98a177d14 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceMeltFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceMeltFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InstabreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InstabreakFlag.java index 52570f4a6..f51411d69 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InstabreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InstabreakFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InvincibleFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InvincibleFlag.java index 5b5953539..c1a97e009 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InvincibleFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InvincibleFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ItemDropFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ItemDropFlag.java index 5df1c0002..dafa92de3 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ItemDropFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ItemDropFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepFlag.java index 4c826e749..0fd19cf33 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepInventoryFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepInventoryFlag.java index 54813c8fb..0c8a138ae 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepInventoryFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepInventoryFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KelpGrowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KelpGrowFlag.java index 2cd578a45..e4dd1507e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KelpGrowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KelpGrowFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/LiquidFlowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/LiquidFlowFlag.java index feffb624c..653646a5c 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/LiquidFlowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/LiquidFlowFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscBreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscBreakFlag.java index fde931611..ccd0e9b8e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscBreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscBreakFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscCapFlag.java index 6a6ec226b..39a106e53 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscCapFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscInteractFlag.java index 833f8a702..0c1e72877 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscInteractFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscPlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscPlaceFlag.java index 50664fad6..a05845a05 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscPlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscPlaceFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobBreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobBreakFlag.java index 255ff474f..fa3359385 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobBreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobBreakFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobCapFlag.java index 018c37397..b553ea868 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobCapFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobPlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobPlaceFlag.java index 343fa8178..dc9119afc 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobPlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobPlaceFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MusicFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MusicFlag.java index 59b47ce6b..efa6bdae4 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MusicFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MusicFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MycelGrowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MycelGrowFlag.java index f69b0cdf1..94a64982a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MycelGrowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MycelGrowFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NoWorldeditFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NoWorldeditFlag.java index b15aee39b..73eb39d90 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NoWorldeditFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NoWorldeditFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyEnterFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyEnterFlag.java index f0f20fcc7..4fd82bda9 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyEnterFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyEnterFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyLeaveFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyLeaveFlag.java index 3d5930ec6..c5a437a89 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyLeaveFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyLeaveFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlaceFlag.java index 555692bff..5374b4e4a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlaceFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlayerInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlayerInteractFlag.java index 3c64bf0b5..71171a0d1 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlayerInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlayerInteractFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PreventCreativeCopyFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PreventCreativeCopyFlag.java index 2c4f84fbe..b04952fc3 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PreventCreativeCopyFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PreventCreativeCopyFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PriceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PriceFlag.java index 9b6674fd6..f51d88859 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PriceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PriceFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PveFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PveFlag.java index afa7d8d37..a84af0e75 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PveFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PveFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PvpFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PvpFlag.java index d0121bfda..2e2a08c9e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PvpFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PvpFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/RedstoneFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/RedstoneFlag.java index 6958a0235..4e43c3926 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/RedstoneFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/RedstoneFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ServerPlotFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ServerPlotFlag.java index 3bb16e3d1..0e39dc30f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ServerPlotFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ServerPlotFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java index 50eae78f2..edcc1e0f7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowMeltFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowMeltFlag.java index bdd5efecd..a303ae46a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowMeltFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowMeltFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SoilDryFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SoilDryFlag.java index 256772826..93c19b2a2 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SoilDryFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SoilDryFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedAttackFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedAttackFlag.java index 30e6ae72f..fddff7ca9 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedAttackFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedAttackFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedInteractFlag.java index abab95179..5aa639f22 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedInteractFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TimeFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TimeFlag.java index 872480981..c890ea203 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TimeFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TimeFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TitlesFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TitlesFlag.java index 5cb9cdf28..21c3c21ca 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TitlesFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TitlesFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UntrustedVisitFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UntrustedVisitFlag.java index 2c3fc5705..b4898bfac 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UntrustedVisitFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UntrustedVisitFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UseFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UseFlag.java index 628b0b0f7..232c3536d 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UseFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UseFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleBreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleBreakFlag.java index 767587d11..b17664013 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleBreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleBreakFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleCapFlag.java index 645e8e72e..095a0a961 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleCapFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehiclePlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehiclePlaceFlag.java index 7ecb33f66..7bff65e6c 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehiclePlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehiclePlaceFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleUseFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleUseFlag.java index cf515bd8a..02fbcd637 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleUseFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleUseFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VillagerInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VillagerInteractFlag.java index 092e46f6e..771327a4e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VillagerInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VillagerInteractFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VineGrowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VineGrowFlag.java index 27663612c..be112709b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VineGrowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VineGrowFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/WeatherFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/WeatherFlag.java index 999dbec97..c1c6d07ce 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/WeatherFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/WeatherFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeListFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeListFlag.java index 55ae04a96..c32d4f27a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeListFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeListFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeWrapper.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeWrapper.java index 837c38668..3b20ebfff 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeWrapper.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.types; import com.google.common.base.Objects; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BooleanFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BooleanFlag.java index bf1ea4da7..4bf53fdba 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BooleanFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BooleanFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/DoubleFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/DoubleFlag.java index ac7beebe8..0b5fbfa21 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/DoubleFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/DoubleFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/IntegerFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/IntegerFlag.java index 1c061d369..ff573b1fb 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/IntegerFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/IntegerFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/ListFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/ListFlag.java index e4c66e8cf..5133945b3 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/ListFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/ListFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/LongFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/LongFlag.java index 162dafe92..6069ea648 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/LongFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/LongFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/NonNegativeIntegerFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/NonNegativeIntegerFlag.java index dd6dceb80..2eb06acea 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/NonNegativeIntegerFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/NonNegativeIntegerFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/NumberFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/NumberFlag.java index 2201a886e..e5a31d095 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/NumberFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/NumberFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/TimedFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/TimedFlag.java index f047aa6fb..adf07eb29 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/TimedFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/TimedFlag.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/schematic/Schematic.java b/Core/src/main/java/com/plotsquared/core/plot/schematic/Schematic.java index 37e9dd7b8..c115a981b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/schematic/Schematic.java +++ b/Core/src/main/java/com/plotsquared/core/plot/schematic/Schematic.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.schematic; import com.sk89q.jnbt.NBTOutputStream; diff --git a/Core/src/main/java/com/plotsquared/core/plot/schematic/StoredEntity.java b/Core/src/main/java/com/plotsquared/core/plot/schematic/StoredEntity.java index b6d7baff0..f77a430e3 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/schematic/StoredEntity.java +++ b/Core/src/main/java/com/plotsquared/core/plot/schematic/StoredEntity.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.schematic; import com.sk89q.worldedit.entity.BaseEntity; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/DefaultPlotAreaManager.java b/Core/src/main/java/com/plotsquared/core/plot/world/DefaultPlotAreaManager.java index 000aec38a..662e92c81 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/DefaultPlotAreaManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/DefaultPlotAreaManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.world; import com.google.inject.Singleton; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/PlotAreaManager.java b/Core/src/main/java/com/plotsquared/core/plot/world/PlotAreaManager.java index ccb6b0cff..0be90e7f8 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/PlotAreaManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/PlotAreaManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.world; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/ScatteredPlotWorld.java b/Core/src/main/java/com/plotsquared/core/plot/world/ScatteredPlotWorld.java index 19d443cee..22c5c2b89 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/ScatteredPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/ScatteredPlotWorld.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.world; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlot.java b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlot.java index 7f6ce9d76..f9c180ae4 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlot.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlot.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.world; import com.plotsquared.core.location.BlockLoc; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotArea.java b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotArea.java index d2161fb43..6d4ed1e71 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotArea.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotArea.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.world; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotAreaManager.java b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotAreaManager.java index a18e13532..2da486971 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotAreaManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotAreaManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.world; import com.google.inject.Singleton; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java index 756409612..0259c0162 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.world; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/StandardPlotWorld.java b/Core/src/main/java/com/plotsquared/core/plot/world/StandardPlotWorld.java index 46aea0b92..d9f9d71ed 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/StandardPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/StandardPlotWorld.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot.world; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/queue/AreaBoundDelegateQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/AreaBoundDelegateQueueCoordinator.java index 046b8cfa6..7e01d782d 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/AreaBoundDelegateQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/AreaBoundDelegateQueueCoordinator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.queue; import com.plotsquared.core.plot.PlotArea; diff --git a/Core/src/main/java/com/plotsquared/core/queue/BasicQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/BasicQueueCoordinator.java index aba4f7f08..1f0fa386a 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/BasicQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/BasicQueueCoordinator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.queue; import com.plotsquared.core.util.PatternUtil; diff --git a/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinator.java index 65bd88eea..cc6938145 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.queue; import com.plotsquared.core.util.task.PlotSquaredTask; diff --git a/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinatorBuilder.java b/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinatorBuilder.java index 44c2f9a45..1f58224bf 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinatorBuilder.java +++ b/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinatorBuilder.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.queue; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/queue/ChunkQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/ChunkQueueCoordinator.java index 873140e62..79553db46 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/ChunkQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/ChunkQueueCoordinator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.queue; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/queue/DelegateQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/DelegateQueueCoordinator.java index 826990294..082a063af 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/DelegateQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/DelegateQueueCoordinator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.queue; import com.sk89q.jnbt.CompoundTag; diff --git a/Core/src/main/java/com/plotsquared/core/queue/GlobalBlockQueue.java b/Core/src/main/java/com/plotsquared/core/queue/GlobalBlockQueue.java index a5fb537b5..abd19ada6 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/GlobalBlockQueue.java +++ b/Core/src/main/java/com/plotsquared/core/queue/GlobalBlockQueue.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.queue; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/queue/LocalChunk.java b/Core/src/main/java/com/plotsquared/core/queue/LocalChunk.java index 4a1d0afc9..06b0effe6 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/LocalChunk.java +++ b/Core/src/main/java/com/plotsquared/core/queue/LocalChunk.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.queue; import com.plotsquared.core.util.ChunkUtil; diff --git a/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateQueueCoordinator.java index a517ed600..f430d2dc1 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateQueueCoordinator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.queue; import com.sk89q.jnbt.CompoundTag; diff --git a/Core/src/main/java/com/plotsquared/core/queue/QueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/QueueCoordinator.java index e12ec0e38..18dd54cff 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/QueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/QueueCoordinator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.queue; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/queue/QueueProvider.java b/Core/src/main/java/com/plotsquared/core/queue/QueueProvider.java index 0b27129dc..43c3a4be2 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/QueueProvider.java +++ b/Core/src/main/java/com/plotsquared/core/queue/QueueProvider.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.queue; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/queue/ScopedQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/ScopedQueueCoordinator.java index b9feb4ea1..a78351bbe 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/ScopedQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/ScopedQueueCoordinator.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.queue; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/services/plots/AutoService.java b/Core/src/main/java/com/plotsquared/core/services/plots/AutoService.java index 3f8671664..032ddbce8 100644 --- a/Core/src/main/java/com/plotsquared/core/services/plots/AutoService.java +++ b/Core/src/main/java/com/plotsquared/core/services/plots/AutoService.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.services.plots; import com.google.common.cache.Cache; diff --git a/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java b/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java index fadc2821f..81ec52604 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java +++ b/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.setup; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/setup/PlotAreaBuilder.java b/Core/src/main/java/com/plotsquared/core/setup/PlotAreaBuilder.java index baf1a8439..f5e49c1a2 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/PlotAreaBuilder.java +++ b/Core/src/main/java/com/plotsquared/core/setup/PlotAreaBuilder.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.setup; diff --git a/Core/src/main/java/com/plotsquared/core/setup/SettingsNodeStep.java b/Core/src/main/java/com/plotsquared/core/setup/SettingsNodeStep.java index 0923f76c8..b55313428 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/SettingsNodeStep.java +++ b/Core/src/main/java/com/plotsquared/core/setup/SettingsNodeStep.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.setup; import com.plotsquared.core.command.Command; diff --git a/Core/src/main/java/com/plotsquared/core/setup/SettingsNodesWrapper.java b/Core/src/main/java/com/plotsquared/core/setup/SettingsNodesWrapper.java index ec744cf91..7b608b78b 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/SettingsNodesWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/setup/SettingsNodesWrapper.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.setup; import com.plotsquared.core.configuration.ConfigurationNode; diff --git a/Core/src/main/java/com/plotsquared/core/setup/SetupProcess.java b/Core/src/main/java/com/plotsquared/core/setup/SetupProcess.java index 2e1c29502..af454aaf1 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/SetupProcess.java +++ b/Core/src/main/java/com/plotsquared/core/setup/SetupProcess.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.setup; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/setup/SetupStep.java b/Core/src/main/java/com/plotsquared/core/setup/SetupStep.java index 011610a79..839f60b64 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/SetupStep.java +++ b/Core/src/main/java/com/plotsquared/core/setup/SetupStep.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.setup; import com.plotsquared.core.command.Command; diff --git a/Core/src/main/java/com/plotsquared/core/synchronization/LockKey.java b/Core/src/main/java/com/plotsquared/core/synchronization/LockKey.java index aa192af3a..275625b48 100644 --- a/Core/src/main/java/com/plotsquared/core/synchronization/LockKey.java +++ b/Core/src/main/java/com/plotsquared/core/synchronization/LockKey.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.synchronization; import com.google.common.base.Objects; diff --git a/Core/src/main/java/com/plotsquared/core/synchronization/LockRepository.java b/Core/src/main/java/com/plotsquared/core/synchronization/LockRepository.java index fdf462af0..79ca52b6c 100644 --- a/Core/src/main/java/com/plotsquared/core/synchronization/LockRepository.java +++ b/Core/src/main/java/com/plotsquared/core/synchronization/LockRepository.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.synchronization; import com.google.common.util.concurrent.Striped; diff --git a/Core/src/main/java/com/plotsquared/core/util/BlockUtil.java b/Core/src/main/java/com/plotsquared/core/util/BlockUtil.java index ff984bdee..b5b959c14 100644 --- a/Core/src/main/java/com/plotsquared/core/util/BlockUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/BlockUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.sk89q.worldedit.WorldEdit; diff --git a/Core/src/main/java/com/plotsquared/core/util/ChunkManager.java b/Core/src/main/java/com/plotsquared/core/util/ChunkManager.java index 2c063ed90..2625ec3d4 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ChunkManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/ChunkManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/ChunkUtil.java b/Core/src/main/java/com/plotsquared/core/util/ChunkUtil.java index 6b0f5c994..57a1cb437 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ChunkUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/ChunkUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/util/EconHandler.java b/Core/src/main/java/com/plotsquared/core/util/EconHandler.java index 0a30583dd..2be53ff44 100644 --- a/Core/src/main/java/com/plotsquared/core/util/EconHandler.java +++ b/Core/src/main/java/com/plotsquared/core/util/EconHandler.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.player.ConsolePlayer; diff --git a/Core/src/main/java/com/plotsquared/core/util/EntityUtil.java b/Core/src/main/java/com/plotsquared/core/util/EntityUtil.java index bfcb8d20e..68e1dbe9d 100644 --- a/Core/src/main/java/com/plotsquared/core/util/EntityUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/EntityUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java b/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java index e49caa512..c3e3228fe 100644 --- a/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java +++ b/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.google.common.eventbus.EventBus; diff --git a/Core/src/main/java/com/plotsquared/core/util/Expression.java b/Core/src/main/java/com/plotsquared/core/util/Expression.java index 39c3565b6..f5fff88d5 100644 --- a/Core/src/main/java/com/plotsquared/core/util/Expression.java +++ b/Core/src/main/java/com/plotsquared/core/util/Expression.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.command.DebugExec; diff --git a/Core/src/main/java/com/plotsquared/core/util/FileBytes.java b/Core/src/main/java/com/plotsquared/core/util/FileBytes.java index 61af8f118..b8262dd78 100644 --- a/Core/src/main/java/com/plotsquared/core/util/FileBytes.java +++ b/Core/src/main/java/com/plotsquared/core/util/FileBytes.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; public class FileBytes { diff --git a/Core/src/main/java/com/plotsquared/core/util/FileUtils.java b/Core/src/main/java/com/plotsquared/core/util/FileUtils.java index 288791e86..9630af6e3 100644 --- a/Core/src/main/java/com/plotsquared/core/util/FileUtils.java +++ b/Core/src/main/java/com/plotsquared/core/util/FileUtils.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/util/HashUtil.java b/Core/src/main/java/com/plotsquared/core/util/HashUtil.java index 2490b0787..634835baa 100644 --- a/Core/src/main/java/com/plotsquared/core/util/HashUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/HashUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java b/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java index 03c15976c..21a3561c9 100644 --- a/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/util/ItemUtil.java b/Core/src/main/java/com/plotsquared/core/util/ItemUtil.java index 124720739..f25282a83 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ItemUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/ItemUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.sk89q.worldedit.world.item.ItemType; diff --git a/Core/src/main/java/com/plotsquared/core/util/LegacyConverter.java b/Core/src/main/java/com/plotsquared/core/util/LegacyConverter.java index 7d1102e89..f72ef92b5 100644 --- a/Core/src/main/java/com/plotsquared/core/util/LegacyConverter.java +++ b/Core/src/main/java/com/plotsquared/core/util/LegacyConverter.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/MainUtil.java b/Core/src/main/java/com/plotsquared/core/util/MainUtil.java index ba5710ec5..0a2ef6ae4 100644 --- a/Core/src/main/java/com/plotsquared/core/util/MainUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/MainUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import org.slf4j.Logger; diff --git a/Core/src/main/java/com/plotsquared/core/util/MathMan.java b/Core/src/main/java/com/plotsquared/core/util/MathMan.java index 0e2cd90ac..5e06151eb 100644 --- a/Core/src/main/java/com/plotsquared/core/util/MathMan.java +++ b/Core/src/main/java/com/plotsquared/core/util/MathMan.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; public class MathMan { diff --git a/Core/src/main/java/com/plotsquared/core/util/PatternUtil.java b/Core/src/main/java/com/plotsquared/core/util/PatternUtil.java index 296074ef0..991fe310f 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PatternUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/PatternUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/util/Permissions.java b/Core/src/main/java/com/plotsquared/core/util/Permissions.java index dd897ffc4..a6fc54624 100644 --- a/Core/src/main/java/com/plotsquared/core/util/Permissions.java +++ b/Core/src/main/java/com/plotsquared/core/util/Permissions.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.permissions.Permission; diff --git a/Core/src/main/java/com/plotsquared/core/util/PlatformWorldManager.java b/Core/src/main/java/com/plotsquared/core/util/PlatformWorldManager.java index 4a3b056c8..2602962d5 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PlatformWorldManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/PlatformWorldManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/util/PlayerManager.java b/Core/src/main/java/com/plotsquared/core/util/PlayerManager.java index b3a265f15..8205e6b63 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PlayerManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/PlayerManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/PlotAreaConverter.java b/Core/src/main/java/com/plotsquared/core/util/PlotAreaConverter.java index 79927a16f..da4cc335b 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PlotAreaConverter.java +++ b/Core/src/main/java/com/plotsquared/core/util/PlotAreaConverter.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.plot.PlotArea; diff --git a/Core/src/main/java/com/plotsquared/core/util/PremiumVerification.java b/Core/src/main/java/com/plotsquared/core/util/PremiumVerification.java index 3ade04e4f..4ffdf49c0 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PremiumVerification.java +++ b/Core/src/main/java/com/plotsquared/core/util/PremiumVerification.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; public class PremiumVerification { diff --git a/Core/src/main/java/com/plotsquared/core/util/ReflectionUtils.java b/Core/src/main/java/com/plotsquared/core/util/ReflectionUtils.java index 5a9eb0106..5977e9a07 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ReflectionUtils.java +++ b/Core/src/main/java/com/plotsquared/core/util/ReflectionUtils.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import java.lang.reflect.Constructor; diff --git a/Core/src/main/java/com/plotsquared/core/util/RegExUtil.java b/Core/src/main/java/com/plotsquared/core/util/RegExUtil.java index c03aed317..9769407bf 100644 --- a/Core/src/main/java/com/plotsquared/core/util/RegExUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/RegExUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import java.util.HashMap; diff --git a/Core/src/main/java/com/plotsquared/core/util/RegionManager.java b/Core/src/main/java/com/plotsquared/core/util/RegionManager.java index 20f5361b3..9f601575d 100644 --- a/Core/src/main/java/com/plotsquared/core/util/RegionManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/RegionManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/util/RegionUtil.java b/Core/src/main/java/com/plotsquared/core/util/RegionUtil.java index 6dc419f6b..a1d2fe58e 100644 --- a/Core/src/main/java/com/plotsquared/core/util/RegionUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/RegionUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/util/RuntimeExceptionRunnableVal.java b/Core/src/main/java/com/plotsquared/core/util/RuntimeExceptionRunnableVal.java index fa7f74e6a..8a1f343a6 100644 --- a/Core/src/main/java/com/plotsquared/core/util/RuntimeExceptionRunnableVal.java +++ b/Core/src/main/java/com/plotsquared/core/util/RuntimeExceptionRunnableVal.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.util.task.RunnableVal; diff --git a/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java b/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java index e40da7f5b..09c6ad1bb 100644 --- a/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java +++ b/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/SetupUtils.java b/Core/src/main/java/com/plotsquared/core/util/SetupUtils.java index b1b92c7a7..7ddb20769 100644 --- a/Core/src/main/java/com/plotsquared/core/util/SetupUtils.java +++ b/Core/src/main/java/com/plotsquared/core/util/SetupUtils.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.generator.GeneratorWrapper; diff --git a/Core/src/main/java/com/plotsquared/core/util/StringComparison.java b/Core/src/main/java/com/plotsquared/core/util/StringComparison.java index d89183285..fce6f6371 100644 --- a/Core/src/main/java/com/plotsquared/core/util/StringComparison.java +++ b/Core/src/main/java/com/plotsquared/core/util/StringComparison.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import java.util.ArrayList; diff --git a/Core/src/main/java/com/plotsquared/core/util/StringMan.java b/Core/src/main/java/com/plotsquared/core/util/StringMan.java index 4342d2b24..b7c544838 100644 --- a/Core/src/main/java/com/plotsquared/core/util/StringMan.java +++ b/Core/src/main/java/com/plotsquared/core/util/StringMan.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/TabCompletions.java b/Core/src/main/java/com/plotsquared/core/util/TabCompletions.java index f45327bfa..a00fc0c20 100644 --- a/Core/src/main/java/com/plotsquared/core/util/TabCompletions.java +++ b/Core/src/main/java/com/plotsquared/core/util/TabCompletions.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.google.common.cache.Cache; diff --git a/Core/src/main/java/com/plotsquared/core/util/ThreadUtils.java b/Core/src/main/java/com/plotsquared/core/util/ThreadUtils.java index aef47a6f9..b69fe5a19 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ThreadUtils.java +++ b/Core/src/main/java/com/plotsquared/core/util/ThreadUtils.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/TimeUtil.java b/Core/src/main/java/com/plotsquared/core/util/TimeUtil.java index 532cbc827..384a716ce 100644 --- a/Core/src/main/java/com/plotsquared/core/util/TimeUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/TimeUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import javax.annotation.Nonnegative; diff --git a/Core/src/main/java/com/plotsquared/core/util/WEManager.java b/Core/src/main/java/com/plotsquared/core/util/WEManager.java index 1824b3f3e..d39f8ea4d 100644 --- a/Core/src/main/java/com/plotsquared/core/util/WEManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/WEManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/WorldUtil.java b/Core/src/main/java/com/plotsquared/core/util/WorldUtil.java index 78d08f8df..9ae2db184 100644 --- a/Core/src/main/java/com/plotsquared/core/util/WorldUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/WorldUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategories.java b/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategories.java index e2c834114..3c3218912 100644 --- a/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategories.java +++ b/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategories.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.entity; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategory.java b/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategory.java index fe8192237..27516758f 100644 --- a/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategory.java +++ b/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategory.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.entity; import com.plotsquared.core.util.WorldUtil; diff --git a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpMenu.java b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpMenu.java index f802c436d..456869fd8 100644 --- a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpMenu.java +++ b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpMenu.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.helpmenu; import com.plotsquared.core.command.Command; diff --git a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpObject.java b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpObject.java index 5b82339de..cfcaea0fd 100644 --- a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpObject.java +++ b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpObject.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.helpmenu; import com.plotsquared.core.command.Argument; diff --git a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpPage.java b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpPage.java index 258f1b67e..5b02071d1 100644 --- a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpPage.java +++ b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpPage.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.helpmenu; import com.plotsquared.core.command.CommandCategory; diff --git a/Core/src/main/java/com/plotsquared/core/util/net/AbstractDelegateOutputStream.java b/Core/src/main/java/com/plotsquared/core/util/net/AbstractDelegateOutputStream.java index 0d425fa91..c69a8ff53 100644 --- a/Core/src/main/java/com/plotsquared/core/util/net/AbstractDelegateOutputStream.java +++ b/Core/src/main/java/com/plotsquared/core/util/net/AbstractDelegateOutputStream.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.net; import java.io.IOException; diff --git a/Core/src/main/java/com/plotsquared/core/util/net/HttpUtil.java b/Core/src/main/java/com/plotsquared/core/util/net/HttpUtil.java index 691dde805..2dcfd912d 100644 --- a/Core/src/main/java/com/plotsquared/core/util/net/HttpUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/net/HttpUtil.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.net; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/util/net/IncendoPaster.java b/Core/src/main/java/com/plotsquared/core/util/net/IncendoPaster.java index f05af3187..d777f23d8 100644 --- a/Core/src/main/java/com/plotsquared/core/util/net/IncendoPaster.java +++ b/Core/src/main/java/com/plotsquared/core/util/net/IncendoPaster.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.net; import com.google.common.base.Charsets; diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java index 49071f9bc..df9a42289 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.placeholders; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java index ab4ed8778..64ffa3d29 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.placeholders; import com.google.common.base.Function; diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java index acde17fac..2f3dc1aa0 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.placeholders; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java index c7dc029b8..f026b3d8f 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.placeholders; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/AliasFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/AliasFilter.java index 351f8c577..c2d9427f9 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/AliasFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/AliasFilter.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/AreaLimitedPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/AreaLimitedPlotProvider.java index 7795a0ec6..84818e205 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/AreaLimitedPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/AreaLimitedPlotProvider.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/ExpiredPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/ExpiredPlotProvider.java index b75d53ccf..cb9275310 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/ExpiredPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/ExpiredPlotProvider.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/FixedPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/FixedPlotProvider.java index e5bdc481a..9da7e4d3e 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/FixedPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/FixedPlotProvider.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/GlobalPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/GlobalPlotProvider.java index f77322c27..233d131ce 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/GlobalPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/GlobalPlotProvider.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/MemberFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/MemberFilter.java index e53cfdf71..71ad86f84 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/MemberFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/MemberFilter.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/NullProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/NullProvider.java index 688418fd8..17e75fbfa 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/NullProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/NullProvider.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/OwnerFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/OwnerFilter.java index eb02ed6f0..a84db5821 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/OwnerFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/OwnerFilter.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PaginatedPlotResult.java b/Core/src/main/java/com/plotsquared/core/util/query/PaginatedPlotResult.java index 03d8fe9f7..388c1b910 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PaginatedPlotResult.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PaginatedPlotResult.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PlotFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/PlotFilter.java index ca42e7ac1..d15fef089 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PlotFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PlotFilter.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/PlotProvider.java index 739e6d636..82c944c76 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PlotProvider.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java b/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java index c38d937c8..51c20da92 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PredicateFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/PredicateFilter.java index 72c09a473..5f89b76d5 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PredicateFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PredicateFilter.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/SearchPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/SearchPlotProvider.java index 2699b0fac..72a159672 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/SearchPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/SearchPlotProvider.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/SortingStrategy.java b/Core/src/main/java/com/plotsquared/core/util/query/SortingStrategy.java index c8fda22d9..b30d6b8b9 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/SortingStrategy.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/SortingStrategy.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.query; /** diff --git a/Core/src/main/java/com/plotsquared/core/util/task/AutoClaimFinishTask.java b/Core/src/main/java/com/plotsquared/core/util/task/AutoClaimFinishTask.java index 7dac88333..21a386b13 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/AutoClaimFinishTask.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/AutoClaimFinishTask.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.task; import com.plotsquared.core.configuration.caption.Templates; diff --git a/Core/src/main/java/com/plotsquared/core/util/task/ObjectTaskRunnable.java b/Core/src/main/java/com/plotsquared/core/util/task/ObjectTaskRunnable.java index d12972302..254fb47c4 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/ObjectTaskRunnable.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/ObjectTaskRunnable.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.task; import java.util.Iterator; diff --git a/Core/src/main/java/com/plotsquared/core/util/task/PlotSquaredTask.java b/Core/src/main/java/com/plotsquared/core/util/task/PlotSquaredTask.java index f183f3206..03571c2eb 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/PlotSquaredTask.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/PlotSquaredTask.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.task; /** diff --git a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal.java b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal.java index ae2a69e34..1304c0545 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.task; public abstract class RunnableVal implements Runnable { diff --git a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal2.java b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal2.java index 7b68c565a..2bb440065 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal2.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal2.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.task; public abstract class RunnableVal2 implements Runnable { diff --git a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal3.java b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal3.java index c625b06ea..8450efdea 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal3.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal3.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.task; public abstract class RunnableVal3 implements Runnable { diff --git a/Core/src/main/java/com/plotsquared/core/util/task/TaskManager.java b/Core/src/main/java/com/plotsquared/core/util/task/TaskManager.java index 5eddd3755..6b53aa800 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/TaskManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/TaskManager.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.task; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/util/task/TaskTime.java b/Core/src/main/java/com/plotsquared/core/util/task/TaskTime.java index 1c1c734ff..a8cb82586 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/TaskTime.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/TaskTime.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.util.task; import com.google.common.base.Objects; diff --git a/Core/src/main/java/com/plotsquared/core/uuid/CacheUUIDService.java b/Core/src/main/java/com/plotsquared/core/uuid/CacheUUIDService.java index 77bd77a21..812228e5d 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/CacheUUIDService.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/CacheUUIDService.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.uuid; import com.google.common.cache.Cache; diff --git a/Core/src/main/java/com/plotsquared/core/uuid/ServiceError.java b/Core/src/main/java/com/plotsquared/core/uuid/ServiceError.java index bc1ef9637..c015a394b 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/ServiceError.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/ServiceError.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.uuid; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/uuid/UUIDMapping.java b/Core/src/main/java/com/plotsquared/core/uuid/UUIDMapping.java index e033b7790..8cae428d6 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/UUIDMapping.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/UUIDMapping.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.uuid; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/uuid/UUIDPipeline.java b/Core/src/main/java/com/plotsquared/core/uuid/UUIDPipeline.java index 2b00addf9..d9dbf3a87 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/UUIDPipeline.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/UUIDPipeline.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.uuid; import com.google.common.collect.Lists; diff --git a/Core/src/main/java/com/plotsquared/core/uuid/UUIDService.java b/Core/src/main/java/com/plotsquared/core/uuid/UUIDService.java index 6a7a1e884..4de7798f9 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/UUIDService.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/UUIDService.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.uuid; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/uuid/offline/OfflineModeUUIDService.java b/Core/src/main/java/com/plotsquared/core/uuid/offline/OfflineModeUUIDService.java index ed52e4701..daae17dc0 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/offline/OfflineModeUUIDService.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/offline/OfflineModeUUIDService.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.uuid.offline; import com.google.common.base.Charsets; diff --git a/Core/src/test/java/com/plotsquared/core/database/AbstractDBTest.java b/Core/src/test/java/com/plotsquared/core/database/AbstractDBTest.java index 85ecd684c..d4998acbb 100644 --- a/Core/src/test/java/com/plotsquared/core/database/AbstractDBTest.java +++ b/Core/src/test/java/com/plotsquared/core/database/AbstractDBTest.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.database; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java b/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java index 7d6e8f7a5..8ee936fbe 100644 --- a/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java +++ b/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.plotsquared.core.database.AbstractDBTest; diff --git a/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java b/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java index 26ddf72cc..b07a251a9 100644 --- a/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java +++ b/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java @@ -23,6 +23,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ + package com.plotsquared.core.plot; import com.plotsquared.core.PlotVersion; diff --git a/HEADER b/HEADER.txt similarity index 95% rename from HEADER rename to HEADER.txt index 9e41cc6a5..0dfea1578 100644 --- a/HEADER +++ b/HEADER.txt @@ -7,7 +7,7 @@ | | |_| PlotSquared plot management system for Minecraft - Copyright (C) ${year} IntellectualSites + Copyright (C) 2020 IntellectualSites This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/build.gradle b/build.gradle deleted file mode 100644 index f4707156a..000000000 --- a/build.gradle +++ /dev/null @@ -1,145 +0,0 @@ -import org.ajoberstar.grgit.Grgit - -buildscript { - repositories { - mavenCentral() - maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" } - jcenter() - } - dependencies { - classpath("com.github.jengelman.gradle.plugins:shadow:5.0.0") - classpath 'gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.14.0' - classpath 'com.bmuschko:gradle-nexus-plugin:2.3.1' - } - configurations.all { - resolutionStrategy { - force("org.ow2.asm:asm:8.0.1") - } - } -} - -plugins { - id "maven-publish" - id "org.ajoberstar.grgit" version "4.0.2" -} - -group = "com.plotsquared" - -ext { - git = Grgit.open(dir: new File(rootDir.toString() + "/.git")) -} - -def ver = "6.0.0" -def versuffix = "-SNAPSHOT" -ext { - if (project.hasProperty("versionsuffix")) { - versuffix = "-$versionsuffix" - } -} -version = ver + versuffix - -description = rootProject.name - -allprojects { - apply(plugin: 'com.github.hierynomus.license') - apply(plugin: 'com.bmuschko.nexus') - - gradle.projectsEvaluated { - tasks.withType(JavaCompile) { - options.compilerArgs << "-Xmaxerrs" << "1000" - } - } - license { - header rootProject.file('HEADER') - mapping 'java', 'SLASHSTAR_STYLE' - ext.year = 2020 - includes(["**/*.java","**/*.js"]) - } - nexus { - sign = false - repositoryUrl = 'https://mvn.intellectualsites.com/content/repositories/releases/' - snapshotRepositoryUrl = 'https://mvn.intellectualsites.com/content/repositories/snapshots/' - } -} - -subprojects { subproject -> - apply(plugin: "java") - apply(plugin: "maven") - apply(plugin: "eclipse") - apply(plugin: "idea") - apply(plugin: "com.github.johnrengelman.shadow") - - group = "com.plotsquared" - - clean.doFirst { - delete("../target") - } - - javadoc.options.encoding = 'UTF-8' - - dependencies { - compile group: 'org.json', name: 'json', version: '20200518' - implementation("com.sk89q.worldedit:worldedit-core:7.2.0-SNAPSHOT") { - exclude(module: "bukkit-classloader-check") - exclude(module: "mockito-core") - exclude(module: "dummypermscompat") - } - implementation("com.google.guava:guava:21.0") { - because("Minecraft uses Guava 21 as of 1.13") - } - testImplementation("junit:junit:4.13") - compile group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2' - } - - configurations.all { - resolutionStrategy { - force("junit:junit:4.12") - force("com.google.guava:guava:21.0") - force("com.google.code.findbugs:jsr305:3.0.2") - } - } - - repositories { - mavenLocal() - mavenCentral() - maven { url = "https://maven.enginehub.org/repo/" } - maven { url = "https://repo.maven.apache.org/maven2" } - maven { url = "https://jitpack.io" } - } - - shadowJar { - dependencies { - include(dependency("org.json:json:20200518")) - include(dependency("net.kyori:text-api:3.0.2")) - include(dependency("javax.inject:javax.inject:1")) - include(dependency("aopalliance:aopalliance:1.0")) - } - relocate("io.papermc.lib", "com.plotsquared.bukkit.paperlib") - relocate("org.json", "com.plotsquared.json") { - exclude "org/json/simple/**" - } - archiveFileName = "${project.name}-${parent.version}.jar" - destinationDirectory = file "../target" - } - - version = rootProject.version -} - -task aggregatedJavadocs(type: Javadoc, description: "Generate javadocs from all child projects as if it was a single project", group: "Documentation") { - destinationDir = file("./docs/javadoc") - title = "$project.name $version API" - options.author true - options.links "http://docs.spring.io/spring/docs/4.3.x/javadoc-api/", "http://docs.oracle.com/javase/8/docs/api/", "http://docs.spring.io/spring-ws/docs/2.3.0.RELEASE/api/", "http://docs.spring.io/spring-security/site/docs/4.0.4.RELEASE/apidocs/" - options.addStringOption("Xdoclint:none", "-quiet") - - delete("./docs") - - subprojects.each { proj -> - proj.tasks.withType(Javadoc).each { javadocTask -> - source += javadocTask.source - classpath += javadocTask.classpath - excludes += javadocTask.excludes - includes += javadocTask.includes - } - } -} diff --git a/build.gradle.kts b/build.gradle.kts new file mode 100644 index 000000000..c3dc98b30 --- /dev/null +++ b/build.gradle.kts @@ -0,0 +1,147 @@ +import com.github.jengelman.gradle.plugins.shadow.ShadowPlugin +import net.minecrell.gradle.licenser.LicenseExtension +import net.minecrell.gradle.licenser.Licenser +import org.ajoberstar.grgit.Grgit +import org.ajoberstar.grgit.gradle.GrgitPlugin + +plugins { + java + `java-library` + `maven-publish` + id("com.github.johnrengelman.shadow") version "6.0.0" + id("org.ajoberstar.grgit") version "4.1.0" + id("net.minecrell.licenser") version "0.4.1" + + eclipse + idea +} + +var ver by extra("6.0.0") +var versuffix by extra("-SNAPSHOT") +val versionsuffix: String? by project +if (versionsuffix != null) { + versuffix = "-$versionsuffix" +} +version = ver + versuffix + +allprojects { + group = "com.plotsquared" + version = rootProject.version + + repositories { + mavenCentral() + jcenter() + + maven { + name = "Sonatype OSS" + url = uri("https://oss.sonatype.org/content/repositories/snapshots/") + } + + maven { + name = "Jitpack" + url = uri("https://jitpack.io") + } + + maven { + name = "IntellectualSites Repository" + url = uri("https://mvn.intellectualsites.com/content/repositories/snapshots") + } + + maven { + name = "EngineHub Repository" + url = uri("https://maven.enginehub.org/repo/") + } + } +} + +subprojects { + apply { + plugin() + plugin() + plugin() + plugin() + plugin() + plugin() + + plugin() + plugin() + } + + dependencies { + api("com.sk89q.worldedit:worldedit-core:7.2.0-SNAPSHOT") { + exclude(group = "bukkit-classloader-check") + exclude(group = "mockito-core") + exclude(group = "dummypermscompat") + } + + // Tests + testImplementation("junit:junit:4.13") + } + + tasks { + named("clean") { + doFirst { + delete("../target") + } + } + + withType { + useJUnitPlatform() + } + } +} + +allprojects { + configure { + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = sourceCompatibility + } + + configure { + header = rootProject.file("HEADER.txt") + include("**/*.java") + newLine = false + } + + java { + withSourcesJar() + withJavadocJar() + } + + tasks { + compileJava { + options.compilerArgs.addAll(arrayOf("-Xmaxerrs", "1000")) + options.compilerArgs.add("-Xlint:all") + for (disabledLint in arrayOf("processing", "path", "fallthrough", "serial")) + options.compilerArgs.add("-Xlint:$disabledLint") + options.isDeprecation = true + options.encoding = "UTF-8" + } + + javadoc { + val opt = options as StandardJavadocDocletOptions + opt.addStringOption("Xdoclint:none", "-quiet") + opt.tags( + "apiNote:a:API Note:", + "implSpec:a:Implementation Requirements:", + "implNote:a:Implementation Note:" + ) + } + + shadowJar { + this.archiveClassifier.set(null as String?) + this.archiveFileName.set("${project.name}-${project.version}.${this.archiveExtension.getOrElse("jar")}") + this.destinationDirectory.set(rootProject.tasks.shadowJar.get().destinationDirectory.get()) + } + + named("build") { + dependsOn(named("shadowJar")) + } + } +} + +extra { + val git: Grgit = Grgit.open { + dir = File("$rootDir/.git") + } +} diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 6c9a22477..88fe4c8a2 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-rc-3-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/settings.gradle b/settings.gradle deleted file mode 100644 index f06101f70..000000000 --- a/settings.gradle +++ /dev/null @@ -1,6 +0,0 @@ -rootProject.name = 'PlotSquared' - -include 'Core', 'Bukkit' - -project(':Core').name = 'PlotSquared-Core' -project(':Bukkit').name = 'PlotSquared-Bukkit' diff --git a/settings.gradle.kts b/settings.gradle.kts new file mode 100644 index 000000000..c06a2cd45 --- /dev/null +++ b/settings.gradle.kts @@ -0,0 +1,6 @@ +rootProject.name = "PlotSquared" + +include("Core", "Bukkit") + +project(":Core").name = "PlotSquared-Core" +project(":Bukkit").name = "PlotSquared-Bukkit" \ No newline at end of file From 9b1dc7d42e134e65b665a1f25450da15dfd3089b Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm Date: Thu, 8 Oct 2020 01:22:19 +0200 Subject: [PATCH 16/35] She compiles! --- Bukkit/build.gradle.kts | 2 +- .../bukkit/uuid/BungeePermsUUIDService.java | 85 ------------------- build.gradle.kts | 12 ++- 3 files changed, 6 insertions(+), 93 deletions(-) delete mode 100644 Bukkit/src/main/java/com/plotsquared/bukkit/uuid/BungeePermsUUIDService.java diff --git a/Bukkit/build.gradle.kts b/Bukkit/build.gradle.kts index 07cffade9..71ef9699a 100644 --- a/Bukkit/build.gradle.kts +++ b/Bukkit/build.gradle.kts @@ -63,7 +63,7 @@ dependencies { compileOnly("com.sk89q:squirrelid:1.0.0-SNAPSHOT") { isTransitive = false } // Adventure - implementation("net.kyori:text-adapter-bukkit:3.0.3") + implementation("net.kyori:adventure-platform-bukkit:4.0.0-SNAPSHOT") } tasks.named("processResources") { diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/BungeePermsUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/BungeePermsUUIDService.java deleted file mode 100644 index 87f4334a6..000000000 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/BungeePermsUUIDService.java +++ /dev/null @@ -1,85 +0,0 @@ -/* - * _____ _ _ _____ _ - * | __ \| | | | / ____| | | - * | |__) | | ___ | |_| (___ __ _ _ _ __ _ _ __ ___ __| | - * | ___/| |/ _ \| __|\___ \ / _` | | | |/ _` | '__/ _ \/ _` | - * | | | | (_) | |_ ____) | (_| | |_| | (_| | | | __/ (_| | - * |_| |_|\___/ \__|_____/ \__, |\__,_|\__,_|_| \___|\__,_| - * | | - * |_| - * PlotSquared plot management system for Minecraft - * Copyright (C) 2020 IntellectualSites - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -package com.plotsquared.bukkit.uuid; - -import com.plotsquared.core.uuid.UUIDMapping; -import com.plotsquared.core.uuid.UUIDService; -import net.alpenblock.bungeeperms.BungeePerms; -import net.alpenblock.bungeeperms.io.UUIDPlayerDB; -import org.bukkit.Bukkit; -import org.bukkit.plugin.RegisteredServiceProvider; - -import javax.annotation.Nonnull; -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; - -/** - * UUID service that uses the BungeePerms API - */ -public class BungeePermsUUIDService implements UUIDService { - - private final BungeePerms bp; - - public BungeePermsUUIDService() { - final RegisteredServiceProvider provider = Bukkit.getServicesManager().getRegistration(BungeePerms.class); - if (provider != null) { - this.bp = provider.getProvider(); - } else { - throw new IllegalStateException("BungeePerms is not available"); - } - } - - @Override @Nonnull public List getNames(@Nonnull final List uuids) { - final List mappings = new ArrayList<>(uuids.size()); - final UUIDPlayerDB uuiddb = BungeePerms.getInstance().getPermissionsManager().getUUIDPlayerDB(); - for (final UUID uuid : uuids) { - try { - final String username = uuiddb.getPlayerName(uuid); - if (username != null) { - mappings.add(new UUIDMapping(uuid, username)); - } - } catch (final Exception ignored) {} - } - return mappings; - } - - @Override @Nonnull public List getUUIDs(@Nonnull final List usernames) { - final List mappings = new ArrayList<>(usernames.size()); - final UUIDPlayerDB uuiddb = BungeePerms.getInstance().getPermissionsManager().getUUIDPlayerDB(); - for (final String username : usernames) { - try { - final UUID uuid = uuiddb.getUUID(username); - if (username != null) { - mappings.add(new UUIDMapping(uuid, username)); - } - } catch (final Exception ignored) {} - } - return mappings; - } - -} diff --git a/build.gradle.kts b/build.gradle.kts index c3dc98b30..df23726f2 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -73,9 +73,6 @@ subprojects { exclude(group = "mockito-core") exclude(group = "dummypermscompat") } - - // Tests - testImplementation("junit:junit:4.13") } tasks { @@ -84,14 +81,15 @@ subprojects { delete("../target") } } - - withType { - useJUnitPlatform() - } } } allprojects { + dependencies { + // Tests + testImplementation("junit:junit:4.13") + } + configure { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = sourceCompatibility From c3069a425d1ae2f9d58c8383b31509d2b894693c Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm Date: Thu, 8 Oct 2020 01:22:52 +0200 Subject: [PATCH 17/35] Format licence headers --- Bukkit/src/main/java/com/plotsquared/bukkit/BukkitCommand.java | 1 - Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java | 1 - .../main/java/com/plotsquared/bukkit/entity/AgeableStats.java | 1 - .../main/java/com/plotsquared/bukkit/entity/ArmorStandStats.java | 1 - .../main/java/com/plotsquared/bukkit/entity/EntityBaseStats.java | 1 - .../main/java/com/plotsquared/bukkit/entity/EntityWrapper.java | 1 - .../src/main/java/com/plotsquared/bukkit/entity/HorseStats.java | 1 - .../java/com/plotsquared/bukkit/entity/LivingEntityStats.java | 1 - .../com/plotsquared/bukkit/entity/ReplicatingEntityWrapper.java | 1 - .../main/java/com/plotsquared/bukkit/entity/TameableStats.java | 1 - .../com/plotsquared/bukkit/entity/TeleportEntityWrapper.java | 1 - .../com/plotsquared/bukkit/generator/BlockStatePopulator.java | 1 - .../plotsquared/bukkit/generator/BukkitAugmentedGenerator.java | 1 - .../com/plotsquared/bukkit/generator/BukkitPlotGenerator.java | 1 - .../com/plotsquared/bukkit/generator/DelegatePlotGenerator.java | 1 - .../main/java/com/plotsquared/bukkit/inject/BackupModule.java | 1 - .../main/java/com/plotsquared/bukkit/inject/BukkitModule.java | 1 - .../java/com/plotsquared/bukkit/inject/PermissionModule.java | 1 - .../java/com/plotsquared/bukkit/inject/WorldManagerModule.java | 1 - .../java/com/plotsquared/bukkit/listener/BlockEventListener.java | 1 - .../main/java/com/plotsquared/bukkit/listener/ChunkListener.java | 1 - .../com/plotsquared/bukkit/listener/EntityEventListener.java | 1 - .../com/plotsquared/bukkit/listener/EntitySpawnListener.java | 1 - .../java/com/plotsquared/bukkit/listener/ForceFieldListener.java | 1 - .../main/java/com/plotsquared/bukkit/listener/PaperListener.java | 1 - .../java/com/plotsquared/bukkit/listener/PaperListener113.java | 1 - .../com/plotsquared/bukkit/listener/PlayerEventListener.java | 1 - .../com/plotsquared/bukkit/listener/ProjectileEventListener.java | 1 - .../java/com/plotsquared/bukkit/listener/ServerListener.java | 1 - .../com/plotsquared/bukkit/listener/SingleWorldListener.java | 1 - .../main/java/com/plotsquared/bukkit/listener/WorldEvents.java | 1 - .../java/com/plotsquared/bukkit/managers/BukkitWorldManager.java | 1 - .../com/plotsquared/bukkit/managers/HyperverseWorldManager.java | 1 - .../com/plotsquared/bukkit/managers/MultiverseWorldManager.java | 1 - .../plotsquared/bukkit/permissions/BukkitPermissionHandler.java | 1 - .../plotsquared/bukkit/permissions/VaultPermissionHandler.java | 1 - .../com/plotsquared/bukkit/placeholder/MVdWPlaceholders.java | 1 - .../com/plotsquared/bukkit/placeholder/PAPIPlaceholders.java | 1 - .../com/plotsquared/bukkit/placeholder/PlaceholderFormatter.java | 1 - .../java/com/plotsquared/bukkit/player/BukkitOfflinePlayer.java | 1 - .../main/java/com/plotsquared/bukkit/player/BukkitPlayer.java | 1 - .../java/com/plotsquared/bukkit/player/BukkitPlayerManager.java | 1 - .../com/plotsquared/bukkit/queue/BukkitChunkCoordinator.java | 1 - .../com/plotsquared/bukkit/queue/BukkitQueueCoordinator.java | 1 - .../main/java/com/plotsquared/bukkit/queue/ChunkCoordinator.java | 1 - Bukkit/src/main/java/com/plotsquared/bukkit/queue/GenChunk.java | 1 - .../com/plotsquared/bukkit/schematic/BukkitSchematicHandler.java | 1 - .../main/java/com/plotsquared/bukkit/schematic/StateWrapper.java | 1 - .../main/java/com/plotsquared/bukkit/util/BukkitBlockUtil.java | 1 - .../java/com/plotsquared/bukkit/util/BukkitChunkManager.java | 1 - .../main/java/com/plotsquared/bukkit/util/BukkitEconHandler.java | 1 - .../main/java/com/plotsquared/bukkit/util/BukkitEntityUtil.java | 1 - .../java/com/plotsquared/bukkit/util/BukkitInventoryUtil.java | 1 - .../java/com/plotsquared/bukkit/util/BukkitRegionManager.java | 1 - .../main/java/com/plotsquared/bukkit/util/BukkitSetupUtils.java | 1 - Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java | 1 - .../src/main/java/com/plotsquared/bukkit/util/BukkitWorld.java | 1 - Bukkit/src/main/java/com/plotsquared/bukkit/util/ContentMap.java | 1 - Bukkit/src/main/java/com/plotsquared/bukkit/util/SetGenCB.java | 1 - .../src/main/java/com/plotsquared/bukkit/util/UpdateUtility.java | 1 - .../com/plotsquared/bukkit/util/task/BukkitPlotSquaredTask.java | 1 - .../java/com/plotsquared/bukkit/util/task/BukkitTaskManager.java | 1 - .../com/plotsquared/bukkit/util/task/PaperTimeConverter.java | 1 - .../com/plotsquared/bukkit/util/task/SpigotTimeConverter.java | 1 - .../java/com/plotsquared/bukkit/uuid/EssentialsUUIDService.java | 1 - .../java/com/plotsquared/bukkit/uuid/LuckPermsUUIDService.java | 1 - .../com/plotsquared/bukkit/uuid/OfflinePlayerUUIDService.java | 1 - .../main/java/com/plotsquared/bukkit/uuid/PaperUUIDService.java | 1 - .../main/java/com/plotsquared/bukkit/uuid/SQLiteUUIDService.java | 1 - .../java/com/plotsquared/bukkit/uuid/SquirrelIdUUIDService.java | 1 - Core/src/main/java/com/plotsquared/core/Platform.java | 1 - Core/src/main/java/com/plotsquared/core/PlotAPI.java | 1 - Core/src/main/java/com/plotsquared/core/PlotPlatform.java | 1 - Core/src/main/java/com/plotsquared/core/PlotSquared.java | 1 - Core/src/main/java/com/plotsquared/core/PlotVersion.java | 1 - Core/src/main/java/com/plotsquared/core/backup/Backup.java | 1 - .../src/main/java/com/plotsquared/core/backup/BackupManager.java | 1 - .../src/main/java/com/plotsquared/core/backup/BackupProfile.java | 1 - .../main/java/com/plotsquared/core/backup/NullBackupManager.java | 1 - .../main/java/com/plotsquared/core/backup/NullBackupProfile.java | 1 - .../java/com/plotsquared/core/backup/PlayerBackupProfile.java | 1 - .../java/com/plotsquared/core/backup/SimpleBackupManager.java | 1 - .../src/main/java/com/plotsquared/core/collection/ArrayUtil.java | 1 - .../java/com/plotsquared/core/collection/ByteArrayUtilities.java | 1 - .../com/plotsquared/core/collection/FlatRandomCollection.java | 1 - Core/src/main/java/com/plotsquared/core/collection/QuadMap.java | 1 - .../java/com/plotsquared/core/collection/RandomCollection.java | 1 - .../com/plotsquared/core/collection/SimpleRandomCollection.java | 1 - Core/src/main/java/com/plotsquared/core/command/Add.java | 1 - Core/src/main/java/com/plotsquared/core/command/Alias.java | 1 - Core/src/main/java/com/plotsquared/core/command/Area.java | 1 - Core/src/main/java/com/plotsquared/core/command/Argument.java | 1 - Core/src/main/java/com/plotsquared/core/command/Auto.java | 1 - Core/src/main/java/com/plotsquared/core/command/Backup.java | 1 - Core/src/main/java/com/plotsquared/core/command/Biome.java | 1 - Core/src/main/java/com/plotsquared/core/command/Buy.java | 1 - Core/src/main/java/com/plotsquared/core/command/Caps.java | 1 - Core/src/main/java/com/plotsquared/core/command/Chat.java | 1 - Core/src/main/java/com/plotsquared/core/command/Claim.java | 1 - Core/src/main/java/com/plotsquared/core/command/Clear.java | 1 - Core/src/main/java/com/plotsquared/core/command/Cluster.java | 1 - Core/src/main/java/com/plotsquared/core/command/CmdConfirm.java | 1 - Core/src/main/java/com/plotsquared/core/command/CmdInstance.java | 1 - Core/src/main/java/com/plotsquared/core/command/Command.java | 1 - .../main/java/com/plotsquared/core/command/CommandCaller.java | 1 - .../main/java/com/plotsquared/core/command/CommandCategory.java | 1 - .../java/com/plotsquared/core/command/CommandDeclaration.java | 1 - Core/src/main/java/com/plotsquared/core/command/Comment.java | 1 - Core/src/main/java/com/plotsquared/core/command/Condense.java | 1 - Core/src/main/java/com/plotsquared/core/command/Confirm.java | 1 - Core/src/main/java/com/plotsquared/core/command/Continue.java | 1 - Core/src/main/java/com/plotsquared/core/command/Copy.java | 1 - .../java/com/plotsquared/core/command/CreateRoadSchematic.java | 1 - .../main/java/com/plotsquared/core/command/DatabaseCommand.java | 1 - Core/src/main/java/com/plotsquared/core/command/Debug.java | 1 - .../main/java/com/plotsquared/core/command/DebugAllowUnsafe.java | 1 - Core/src/main/java/com/plotsquared/core/command/DebugExec.java | 1 - .../java/com/plotsquared/core/command/DebugImportWorlds.java | 1 - .../main/java/com/plotsquared/core/command/DebugLoadTest.java | 1 - Core/src/main/java/com/plotsquared/core/command/DebugPaste.java | 1 - .../main/java/com/plotsquared/core/command/DebugRoadRegen.java | 1 - .../main/java/com/plotsquared/core/command/DebugSaveTest.java | 1 - Core/src/main/java/com/plotsquared/core/command/Delete.java | 1 - Core/src/main/java/com/plotsquared/core/command/Deny.java | 1 - Core/src/main/java/com/plotsquared/core/command/Desc.java | 1 - Core/src/main/java/com/plotsquared/core/command/Dislike.java | 1 - Core/src/main/java/com/plotsquared/core/command/Done.java | 1 - Core/src/main/java/com/plotsquared/core/command/Download.java | 1 - Core/src/main/java/com/plotsquared/core/command/FlagCommand.java | 1 - Core/src/main/java/com/plotsquared/core/command/Grant.java | 1 - Core/src/main/java/com/plotsquared/core/command/Help.java | 1 - Core/src/main/java/com/plotsquared/core/command/HomeCommand.java | 1 - Core/src/main/java/com/plotsquared/core/command/Inbox.java | 1 - Core/src/main/java/com/plotsquared/core/command/Info.java | 1 - Core/src/main/java/com/plotsquared/core/command/Kick.java | 1 - Core/src/main/java/com/plotsquared/core/command/Leave.java | 1 - Core/src/main/java/com/plotsquared/core/command/Like.java | 1 - Core/src/main/java/com/plotsquared/core/command/ListCmd.java | 1 - Core/src/main/java/com/plotsquared/core/command/Load.java | 1 - Core/src/main/java/com/plotsquared/core/command/MainCommand.java | 1 - Core/src/main/java/com/plotsquared/core/command/Merge.java | 1 - Core/src/main/java/com/plotsquared/core/command/Middle.java | 1 - Core/src/main/java/com/plotsquared/core/command/Move.java | 1 - Core/src/main/java/com/plotsquared/core/command/Music.java | 1 - Core/src/main/java/com/plotsquared/core/command/Near.java | 1 - Core/src/main/java/com/plotsquared/core/command/Owner.java | 1 - Core/src/main/java/com/plotsquared/core/command/PluginCmd.java | 1 - Core/src/main/java/com/plotsquared/core/command/Purge.java | 1 - Core/src/main/java/com/plotsquared/core/command/Rate.java | 1 - .../main/java/com/plotsquared/core/command/RegenAllRoads.java | 1 - Core/src/main/java/com/plotsquared/core/command/Relight.java | 1 - Core/src/main/java/com/plotsquared/core/command/Reload.java | 1 - Core/src/main/java/com/plotsquared/core/command/Remove.java | 1 - .../src/main/java/com/plotsquared/core/command/RequiredType.java | 1 - Core/src/main/java/com/plotsquared/core/command/Save.java | 1 - .../src/main/java/com/plotsquared/core/command/SchematicCmd.java | 1 - Core/src/main/java/com/plotsquared/core/command/Set.java | 1 - Core/src/main/java/com/plotsquared/core/command/SetCommand.java | 1 - Core/src/main/java/com/plotsquared/core/command/SetHome.java | 1 - Core/src/main/java/com/plotsquared/core/command/Setup.java | 1 - Core/src/main/java/com/plotsquared/core/command/SubCommand.java | 1 - Core/src/main/java/com/plotsquared/core/command/Swap.java | 1 - Core/src/main/java/com/plotsquared/core/command/Target.java | 1 - Core/src/main/java/com/plotsquared/core/command/Template.java | 1 - Core/src/main/java/com/plotsquared/core/command/Toggle.java | 1 - Core/src/main/java/com/plotsquared/core/command/Trim.java | 1 - Core/src/main/java/com/plotsquared/core/command/Trust.java | 1 - Core/src/main/java/com/plotsquared/core/command/Unlink.java | 1 - Core/src/main/java/com/plotsquared/core/command/Visit.java | 1 - Core/src/main/java/com/plotsquared/core/command/WE_Anywhere.java | 1 - .../java/com/plotsquared/core/components/ComponentCommand.java | 1 - .../java/com/plotsquared/core/components/ComponentPreset.java | 1 - .../com/plotsquared/core/components/ComponentPresetManager.java | 1 - .../src/main/java/com/plotsquared/core/configuration/Config.java | 1 - .../java/com/plotsquared/core/configuration/Configuration.java | 1 - .../com/plotsquared/core/configuration/ConfigurationNode.java | 1 - .../com/plotsquared/core/configuration/ConfigurationOptions.java | 1 - .../com/plotsquared/core/configuration/ConfigurationSection.java | 1 - .../com/plotsquared/core/configuration/ConfigurationUtil.java | 1 - .../core/configuration/InvalidConfigurationException.java | 1 - .../com/plotsquared/core/configuration/MemoryConfiguration.java | 1 - .../core/configuration/MemoryConfigurationOptions.java | 1 - .../java/com/plotsquared/core/configuration/MemorySection.java | 1 - .../main/java/com/plotsquared/core/configuration/Settings.java | 1 - .../main/java/com/plotsquared/core/configuration/Storage.java | 1 - .../java/com/plotsquared/core/configuration/caption/Caption.java | 1 - .../plotsquared/core/configuration/caption/CaptionHolder.java | 1 - .../plotsquared/core/configuration/caption/CaptionLoader.java | 1 - .../com/plotsquared/core/configuration/caption/CaptionMap.java | 1 - .../plotsquared/core/configuration/caption/CaptionUtility.java | 1 - .../plotsquared/core/configuration/caption/ChatFormatter.java | 1 - .../plotsquared/core/configuration/caption/DummyCaptionMap.java | 1 - .../com/plotsquared/core/configuration/caption/LocaleHolder.java | 1 - .../core/configuration/caption/LocalizedCaptionMap.java | 1 - .../core/configuration/caption/NamespacedCaption.java | 1 - .../core/configuration/caption/PerUserLocaleCaptionMap.java | 1 - .../core/configuration/caption/PlotSquaredChatFormatter.java | 1 - .../plotsquared/core/configuration/caption/StaticCaption.java | 1 - .../com/plotsquared/core/configuration/caption/Templates.java | 1 - .../core/configuration/caption/TranslatableCaption.java | 1 - .../plotsquared/core/configuration/file/FileConfiguration.java | 1 - .../core/configuration/file/FileConfigurationOptions.java | 1 - .../plotsquared/core/configuration/file/YamlConfiguration.java | 1 - .../core/configuration/file/YamlConfigurationOptions.java | 1 - .../com/plotsquared/core/configuration/file/YamlConstructor.java | 1 - .../com/plotsquared/core/configuration/file/YamlRepresenter.java | 1 - .../configuration/serialization/ConfigurationSerializable.java | 1 - .../configuration/serialization/ConfigurationSerialization.java | 1 - .../configuration/serialization/DelegateDeserialization.java | 1 - .../core/configuration/serialization/SerializableAs.java | 1 - Core/src/main/java/com/plotsquared/core/database/AbstractDB.java | 1 - Core/src/main/java/com/plotsquared/core/database/DBFunc.java | 1 - Core/src/main/java/com/plotsquared/core/database/Database.java | 1 - Core/src/main/java/com/plotsquared/core/database/MySQL.java | 1 - Core/src/main/java/com/plotsquared/core/database/SQLManager.java | 1 - Core/src/main/java/com/plotsquared/core/database/SQLite.java | 1 - Core/src/main/java/com/plotsquared/core/database/StmtMod.java | 1 - .../java/com/plotsquared/core/events/CancellablePlotEvent.java | 1 - .../java/com/plotsquared/core/events/PlayerAutoPlotEvent.java | 1 - .../java/com/plotsquared/core/events/PlayerClaimPlotEvent.java | 1 - .../java/com/plotsquared/core/events/PlayerEnterPlotEvent.java | 1 - .../java/com/plotsquared/core/events/PlayerLeavePlotEvent.java | 1 - .../java/com/plotsquared/core/events/PlayerPlotDeniedEvent.java | 1 - .../java/com/plotsquared/core/events/PlayerPlotHelperEvent.java | 1 - .../java/com/plotsquared/core/events/PlayerPlotTrustedEvent.java | 1 - .../com/plotsquared/core/events/PlayerTeleportToPlotEvent.java | 1 - .../java/com/plotsquared/core/events/PlotAutoMergeEvent.java | 1 - .../java/com/plotsquared/core/events/PlotChangeOwnerEvent.java | 1 - .../main/java/com/plotsquared/core/events/PlotClearEvent.java | 1 - .../java/com/plotsquared/core/events/PlotComponentSetEvent.java | 1 - .../main/java/com/plotsquared/core/events/PlotDeleteEvent.java | 1 - .../src/main/java/com/plotsquared/core/events/PlotDoneEvent.java | 1 - Core/src/main/java/com/plotsquared/core/events/PlotEvent.java | 1 - .../main/java/com/plotsquared/core/events/PlotFlagAddEvent.java | 1 - .../src/main/java/com/plotsquared/core/events/PlotFlagEvent.java | 1 - .../java/com/plotsquared/core/events/PlotFlagRemoveEvent.java | 1 - .../main/java/com/plotsquared/core/events/PlotMergeEvent.java | 1 - .../main/java/com/plotsquared/core/events/PlotPlayerEvent.java | 1 - .../src/main/java/com/plotsquared/core/events/PlotRateEvent.java | 1 - .../main/java/com/plotsquared/core/events/PlotUnlinkEvent.java | 1 - Core/src/main/java/com/plotsquared/core/events/Result.java | 1 - .../src/main/java/com/plotsquared/core/events/TeleportCause.java | 1 - .../main/java/com/plotsquared/core/generator/AugmentedUtils.java | 1 - .../java/com/plotsquared/core/generator/ClassicPlotManager.java | 1 - .../plotsquared/core/generator/ClassicPlotManagerComponent.java | 1 - .../java/com/plotsquared/core/generator/ClassicPlotWorld.java | 1 - .../java/com/plotsquared/core/generator/GeneratorWrapper.java | 1 - .../java/com/plotsquared/core/generator/GridPlotManager.java | 1 - .../main/java/com/plotsquared/core/generator/GridPlotWorld.java | 1 - Core/src/main/java/com/plotsquared/core/generator/HybridGen.java | 1 - .../java/com/plotsquared/core/generator/HybridPlotManager.java | 1 - .../java/com/plotsquared/core/generator/HybridPlotWorld.java | 1 - .../main/java/com/plotsquared/core/generator/HybridUtils.java | 1 - .../com/plotsquared/core/generator/IndependentPlotGenerator.java | 1 - .../com/plotsquared/core/generator/SingleWorldGenerator.java | 1 - .../java/com/plotsquared/core/generator/SquarePlotManager.java | 1 - .../java/com/plotsquared/core/generator/SquarePlotWorld.java | 1 - .../plotsquared/core/inject/annotations/BackgroundPipeline.java | 1 - .../java/com/plotsquared/core/inject/annotations/ConfigFile.java | 1 - .../com/plotsquared/core/inject/annotations/ConsoleActor.java | 1 - .../plotsquared/core/inject/annotations/DefaultGenerator.java | 1 - .../plotsquared/core/inject/annotations/ImpromptuPipeline.java | 1 - .../com/plotsquared/core/inject/annotations/WorldConfig.java | 1 - .../java/com/plotsquared/core/inject/annotations/WorldFile.java | 1 - .../core/inject/factory/ChunkCoordinatorBuilderFactory.java | 1 - .../plotsquared/core/inject/factory/ChunkCoordinatorFactory.java | 1 - .../plotsquared/core/inject/factory/HybridPlotWorldFactory.java | 1 - .../core/inject/factory/PlayerBackupProfileFactory.java | 1 - .../com/plotsquared/core/inject/modules/PlotSquaredModule.java | 1 - .../main/java/com/plotsquared/core/listener/ExtentWrapper.java | 1 - .../java/com/plotsquared/core/listener/PlayerBlockEventType.java | 1 - .../main/java/com/plotsquared/core/listener/PlotListener.java | 1 - .../java/com/plotsquared/core/listener/ProcessedWEExtent.java | 1 - Core/src/main/java/com/plotsquared/core/listener/WEExtent.java | 1 - .../main/java/com/plotsquared/core/listener/WESubscriber.java | 1 - Core/src/main/java/com/plotsquared/core/location/BlockLoc.java | 1 - .../main/java/com/plotsquared/core/location/ChunkWrapper.java | 1 - Core/src/main/java/com/plotsquared/core/location/Direction.java | 1 - Core/src/main/java/com/plotsquared/core/location/Location.java | 1 - Core/src/main/java/com/plotsquared/core/location/PlotLoc.java | 1 - Core/src/main/java/com/plotsquared/core/location/World.java | 1 - .../plotsquared/core/permissions/ConsolePermissionProfile.java | 1 - .../com/plotsquared/core/permissions/NullPermissionProfile.java | 1 - .../main/java/com/plotsquared/core/permissions/Permission.java | 1 - .../java/com/plotsquared/core/permissions/PermissionHandler.java | 1 - .../java/com/plotsquared/core/permissions/PermissionHolder.java | 1 - .../java/com/plotsquared/core/permissions/PermissionProfile.java | 1 - .../src/main/java/com/plotsquared/core/player/ConsolePlayer.java | 1 - .../main/java/com/plotsquared/core/player/MetaDataAccess.java | 1 - Core/src/main/java/com/plotsquared/core/player/MetaDataKey.java | 1 - .../main/java/com/plotsquared/core/player/OfflinePlotPlayer.java | 1 - .../com/plotsquared/core/player/PersistentMetaDataAccess.java | 1 - .../java/com/plotsquared/core/player/PlayerMetaDataKeys.java | 1 - Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java | 1 - .../com/plotsquared/core/player/TemporaryMetaDataAccess.java | 1 - Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java | 1 - Core/src/main/java/com/plotsquared/core/plot/Plot.java | 1 - Core/src/main/java/com/plotsquared/core/plot/PlotArea.java | 1 - .../main/java/com/plotsquared/core/plot/PlotAreaTerrainType.java | 1 - Core/src/main/java/com/plotsquared/core/plot/PlotAreaType.java | 1 - Core/src/main/java/com/plotsquared/core/plot/PlotCluster.java | 1 - .../java/com/plotsquared/core/plot/PlotCommentContainer.java | 1 - Core/src/main/java/com/plotsquared/core/plot/PlotHandler.java | 1 - Core/src/main/java/com/plotsquared/core/plot/PlotId.java | 1 - Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java | 1 - Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java | 1 - Core/src/main/java/com/plotsquared/core/plot/PlotManager.java | 1 - .../java/com/plotsquared/core/plot/PlotModificationManager.java | 1 - Core/src/main/java/com/plotsquared/core/plot/PlotSettings.java | 1 - Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java | 1 - Core/src/main/java/com/plotsquared/core/plot/PlotWorld.java | 1 - Core/src/main/java/com/plotsquared/core/plot/Rating.java | 1 - .../java/com/plotsquared/core/plot/comment/CommentInbox.java | 1 - .../java/com/plotsquared/core/plot/comment/CommentManager.java | 1 - .../main/java/com/plotsquared/core/plot/comment/InboxOwner.java | 1 - .../main/java/com/plotsquared/core/plot/comment/InboxPublic.java | 1 - .../main/java/com/plotsquared/core/plot/comment/InboxReport.java | 1 - .../main/java/com/plotsquared/core/plot/comment/PlotComment.java | 1 - .../java/com/plotsquared/core/plot/expiration/ExpireManager.java | 1 - .../java/com/plotsquared/core/plot/expiration/ExpiryTask.java | 1 - .../java/com/plotsquared/core/plot/expiration/PlotAnalysis.java | 1 - .../main/java/com/plotsquared/core/plot/flag/FlagContainer.java | 1 - .../java/com/plotsquared/core/plot/flag/FlagParseException.java | 1 - .../java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java | 1 - .../main/java/com/plotsquared/core/plot/flag/InternalFlag.java | 1 - Core/src/main/java/com/plotsquared/core/plot/flag/PlotFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/AnalysisFlag.java | 1 - .../core/plot/flag/implementations/AnimalAttackFlag.java | 1 - .../core/plot/flag/implementations/AnimalCapFlag.java | 1 - .../core/plot/flag/implementations/AnimalInteractFlag.java | 1 - .../core/plot/flag/implementations/BlockBurnFlag.java | 1 - .../core/plot/flag/implementations/BlockIgnitionFlag.java | 1 - .../core/plot/flag/implementations/BlockedCmdsFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/BreakFlag.java | 1 - .../com/plotsquared/core/plot/flag/implementations/ChatFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/CoralDryFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/DenyExitFlag.java | 1 - .../core/plot/flag/implementations/DenyTeleportFlag.java | 1 - .../core/plot/flag/implementations/DescriptionFlag.java | 1 - .../core/plot/flag/implementations/DeviceInteractFlag.java | 1 - .../core/plot/flag/implementations/DisablePhysicsFlag.java | 1 - .../com/plotsquared/core/plot/flag/implementations/DoneFlag.java | 1 - .../core/plot/flag/implementations/DropProtectionFlag.java | 1 - .../core/plot/flag/implementations/EntityCapFlag.java | 1 - .../core/plot/flag/implementations/ExplosionFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/FarewellFlag.java | 1 - .../com/plotsquared/core/plot/flag/implementations/FeedFlag.java | 1 - .../com/plotsquared/core/plot/flag/implementations/FlyFlag.java | 1 - .../core/plot/flag/implementations/ForcefieldFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/GamemodeFlag.java | 1 - .../core/plot/flag/implementations/GrassGrowFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/GreetingFlag.java | 1 - .../core/plot/flag/implementations/GuestGamemodeFlag.java | 1 - .../core/plot/flag/implementations/HangingBreakFlag.java | 1 - .../core/plot/flag/implementations/HangingPlaceFlag.java | 1 - .../com/plotsquared/core/plot/flag/implementations/HealFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/HideInfoFlag.java | 1 - .../core/plot/flag/implementations/HostileAttackFlag.java | 1 - .../core/plot/flag/implementations/HostileCapFlag.java | 1 - .../core/plot/flag/implementations/HostileInteractFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/IceFormFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/IceMeltFlag.java | 1 - .../core/plot/flag/implementations/InstabreakFlag.java | 1 - .../core/plot/flag/implementations/InvincibleFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/ItemDropFlag.java | 1 - .../com/plotsquared/core/plot/flag/implementations/KeepFlag.java | 1 - .../core/plot/flag/implementations/KeepInventoryFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/KelpGrowFlag.java | 1 - .../core/plot/flag/implementations/LiquidFlowFlag.java | 1 - .../core/plot/flag/implementations/MiscBreakFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/MiscCapFlag.java | 1 - .../core/plot/flag/implementations/MiscInteractFlag.java | 1 - .../core/plot/flag/implementations/MiscPlaceFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/MobBreakFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/MobCapFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/MobPlaceFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/MusicFlag.java | 1 - .../core/plot/flag/implementations/MycelGrowFlag.java | 1 - .../core/plot/flag/implementations/NoWorldeditFlag.java | 1 - .../core/plot/flag/implementations/NotifyEnterFlag.java | 1 - .../core/plot/flag/implementations/NotifyLeaveFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/PlaceFlag.java | 1 - .../core/plot/flag/implementations/PlayerInteractFlag.java | 1 - .../core/plot/flag/implementations/PreventCreativeCopyFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/PriceFlag.java | 1 - .../com/plotsquared/core/plot/flag/implementations/PveFlag.java | 1 - .../com/plotsquared/core/plot/flag/implementations/PvpFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/RedstoneFlag.java | 1 - .../core/plot/flag/implementations/ServerPlotFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/SnowFormFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/SnowMeltFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/SoilDryFlag.java | 1 - .../core/plot/flag/implementations/TamedAttackFlag.java | 1 - .../core/plot/flag/implementations/TamedInteractFlag.java | 1 - .../com/plotsquared/core/plot/flag/implementations/TimeFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/TitlesFlag.java | 1 - .../core/plot/flag/implementations/UntrustedVisitFlag.java | 1 - .../com/plotsquared/core/plot/flag/implementations/UseFlag.java | 1 - .../core/plot/flag/implementations/VehicleBreakFlag.java | 1 - .../core/plot/flag/implementations/VehicleCapFlag.java | 1 - .../core/plot/flag/implementations/VehiclePlaceFlag.java | 1 - .../core/plot/flag/implementations/VehicleUseFlag.java | 1 - .../core/plot/flag/implementations/VillagerInteractFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/VineGrowFlag.java | 1 - .../plotsquared/core/plot/flag/implementations/WeatherFlag.java | 1 - .../com/plotsquared/core/plot/flag/types/BlockTypeListFlag.java | 1 - .../com/plotsquared/core/plot/flag/types/BlockTypeWrapper.java | 1 - .../java/com/plotsquared/core/plot/flag/types/BooleanFlag.java | 1 - .../java/com/plotsquared/core/plot/flag/types/DoubleFlag.java | 1 - .../java/com/plotsquared/core/plot/flag/types/IntegerFlag.java | 1 - .../main/java/com/plotsquared/core/plot/flag/types/ListFlag.java | 1 - .../main/java/com/plotsquared/core/plot/flag/types/LongFlag.java | 1 - .../plotsquared/core/plot/flag/types/NonNegativeIntegerFlag.java | 1 - .../java/com/plotsquared/core/plot/flag/types/NumberFlag.java | 1 - .../java/com/plotsquared/core/plot/flag/types/TimedFlag.java | 1 - .../main/java/com/plotsquared/core/plot/schematic/Schematic.java | 1 - .../java/com/plotsquared/core/plot/schematic/StoredEntity.java | 1 - .../com/plotsquared/core/plot/world/DefaultPlotAreaManager.java | 1 - .../java/com/plotsquared/core/plot/world/PlotAreaManager.java | 1 - .../java/com/plotsquared/core/plot/world/ScatteredPlotWorld.java | 1 - .../main/java/com/plotsquared/core/plot/world/SinglePlot.java | 1 - .../java/com/plotsquared/core/plot/world/SinglePlotArea.java | 1 - .../com/plotsquared/core/plot/world/SinglePlotAreaManager.java | 1 - .../java/com/plotsquared/core/plot/world/SinglePlotManager.java | 1 - .../java/com/plotsquared/core/plot/world/StandardPlotWorld.java | 1 - .../core/queue/AreaBoundDelegateQueueCoordinator.java | 1 - .../java/com/plotsquared/core/queue/BasicQueueCoordinator.java | 1 - .../main/java/com/plotsquared/core/queue/ChunkCoordinator.java | 1 - .../java/com/plotsquared/core/queue/ChunkCoordinatorBuilder.java | 1 - .../java/com/plotsquared/core/queue/ChunkQueueCoordinator.java | 1 - .../com/plotsquared/core/queue/DelegateQueueCoordinator.java | 1 - .../main/java/com/plotsquared/core/queue/GlobalBlockQueue.java | 1 - Core/src/main/java/com/plotsquared/core/queue/LocalChunk.java | 1 - .../core/queue/LocationOffsetDelegateQueueCoordinator.java | 1 - .../main/java/com/plotsquared/core/queue/QueueCoordinator.java | 1 - Core/src/main/java/com/plotsquared/core/queue/QueueProvider.java | 1 - .../java/com/plotsquared/core/queue/ScopedQueueCoordinator.java | 1 - .../java/com/plotsquared/core/services/plots/AutoService.java | 1 - .../main/java/com/plotsquared/core/setup/CommonSetupSteps.java | 1 - .../main/java/com/plotsquared/core/setup/PlotAreaBuilder.java | 1 - .../main/java/com/plotsquared/core/setup/SettingsNodeStep.java | 1 - .../java/com/plotsquared/core/setup/SettingsNodesWrapper.java | 1 - Core/src/main/java/com/plotsquared/core/setup/SetupProcess.java | 1 - Core/src/main/java/com/plotsquared/core/setup/SetupStep.java | 1 - .../main/java/com/plotsquared/core/synchronization/LockKey.java | 1 - .../com/plotsquared/core/synchronization/LockRepository.java | 1 - Core/src/main/java/com/plotsquared/core/util/BlockUtil.java | 1 - Core/src/main/java/com/plotsquared/core/util/ChunkManager.java | 1 - Core/src/main/java/com/plotsquared/core/util/ChunkUtil.java | 1 - Core/src/main/java/com/plotsquared/core/util/EconHandler.java | 1 - Core/src/main/java/com/plotsquared/core/util/EntityUtil.java | 1 - .../src/main/java/com/plotsquared/core/util/EventDispatcher.java | 1 - Core/src/main/java/com/plotsquared/core/util/Expression.java | 1 - Core/src/main/java/com/plotsquared/core/util/FileBytes.java | 1 - Core/src/main/java/com/plotsquared/core/util/FileUtils.java | 1 - Core/src/main/java/com/plotsquared/core/util/HashUtil.java | 1 - Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java | 1 - Core/src/main/java/com/plotsquared/core/util/ItemUtil.java | 1 - .../src/main/java/com/plotsquared/core/util/LegacyConverter.java | 1 - Core/src/main/java/com/plotsquared/core/util/MainUtil.java | 1 - Core/src/main/java/com/plotsquared/core/util/MathMan.java | 1 - Core/src/main/java/com/plotsquared/core/util/PatternUtil.java | 1 - Core/src/main/java/com/plotsquared/core/util/Permissions.java | 1 - .../java/com/plotsquared/core/util/PlatformWorldManager.java | 1 - Core/src/main/java/com/plotsquared/core/util/PlayerManager.java | 1 - .../main/java/com/plotsquared/core/util/PlotAreaConverter.java | 1 - .../main/java/com/plotsquared/core/util/PremiumVerification.java | 1 - .../src/main/java/com/plotsquared/core/util/ReflectionUtils.java | 1 - Core/src/main/java/com/plotsquared/core/util/RegExUtil.java | 1 - Core/src/main/java/com/plotsquared/core/util/RegionManager.java | 1 - Core/src/main/java/com/plotsquared/core/util/RegionUtil.java | 1 - .../com/plotsquared/core/util/RuntimeExceptionRunnableVal.java | 1 - .../main/java/com/plotsquared/core/util/SchematicHandler.java | 1 - Core/src/main/java/com/plotsquared/core/util/SetupUtils.java | 1 - .../main/java/com/plotsquared/core/util/StringComparison.java | 1 - Core/src/main/java/com/plotsquared/core/util/StringMan.java | 1 - Core/src/main/java/com/plotsquared/core/util/TabCompletions.java | 1 - Core/src/main/java/com/plotsquared/core/util/ThreadUtils.java | 1 - Core/src/main/java/com/plotsquared/core/util/TimeUtil.java | 1 - Core/src/main/java/com/plotsquared/core/util/WEManager.java | 1 - Core/src/main/java/com/plotsquared/core/util/WorldUtil.java | 1 - .../java/com/plotsquared/core/util/entity/EntityCategories.java | 1 - .../java/com/plotsquared/core/util/entity/EntityCategory.java | 1 - .../main/java/com/plotsquared/core/util/helpmenu/HelpMenu.java | 1 - .../main/java/com/plotsquared/core/util/helpmenu/HelpObject.java | 1 - .../main/java/com/plotsquared/core/util/helpmenu/HelpPage.java | 1 - .../plotsquared/core/util/net/AbstractDelegateOutputStream.java | 1 - Core/src/main/java/com/plotsquared/core/util/net/HttpUtil.java | 1 - .../main/java/com/plotsquared/core/util/net/IncendoPaster.java | 1 - .../java/com/plotsquared/core/util/placeholders/Placeholder.java | 1 - .../plotsquared/core/util/placeholders/PlaceholderRegistry.java | 1 - .../plotsquared/core/util/placeholders/PlotFlagPlaceholder.java | 1 - .../core/util/placeholders/PlotSpecificPlaceholder.java | 1 - .../main/java/com/plotsquared/core/util/query/AliasFilter.java | 1 - .../com/plotsquared/core/util/query/AreaLimitedPlotProvider.java | 1 - .../com/plotsquared/core/util/query/ExpiredPlotProvider.java | 1 - .../java/com/plotsquared/core/util/query/FixedPlotProvider.java | 1 - .../java/com/plotsquared/core/util/query/GlobalPlotProvider.java | 1 - .../main/java/com/plotsquared/core/util/query/MemberFilter.java | 1 - .../main/java/com/plotsquared/core/util/query/NullProvider.java | 1 - .../main/java/com/plotsquared/core/util/query/OwnerFilter.java | 1 - .../com/plotsquared/core/util/query/PaginatedPlotResult.java | 1 - .../main/java/com/plotsquared/core/util/query/PlotFilter.java | 1 - .../main/java/com/plotsquared/core/util/query/PlotProvider.java | 1 - .../src/main/java/com/plotsquared/core/util/query/PlotQuery.java | 1 - .../java/com/plotsquared/core/util/query/PredicateFilter.java | 1 - .../java/com/plotsquared/core/util/query/SearchPlotProvider.java | 1 - .../java/com/plotsquared/core/util/query/SortingStrategy.java | 1 - .../java/com/plotsquared/core/util/task/AutoClaimFinishTask.java | 1 - .../java/com/plotsquared/core/util/task/ObjectTaskRunnable.java | 1 - .../java/com/plotsquared/core/util/task/PlotSquaredTask.java | 1 - .../main/java/com/plotsquared/core/util/task/RunnableVal.java | 1 - .../main/java/com/plotsquared/core/util/task/RunnableVal2.java | 1 - .../main/java/com/plotsquared/core/util/task/RunnableVal3.java | 1 - .../main/java/com/plotsquared/core/util/task/TaskManager.java | 1 - Core/src/main/java/com/plotsquared/core/util/task/TaskTime.java | 1 - .../main/java/com/plotsquared/core/uuid/CacheUUIDService.java | 1 - Core/src/main/java/com/plotsquared/core/uuid/ServiceError.java | 1 - Core/src/main/java/com/plotsquared/core/uuid/UUIDMapping.java | 1 - Core/src/main/java/com/plotsquared/core/uuid/UUIDPipeline.java | 1 - Core/src/main/java/com/plotsquared/core/uuid/UUIDService.java | 1 - .../plotsquared/core/uuid/offline/OfflineModeUUIDService.java | 1 - .../test/java/com/plotsquared/core/database/AbstractDBTest.java | 1 - Core/src/test/java/com/plotsquared/core/plot/FlagTest.java | 1 - .../src/test/java/com/plotsquared/core/plot/PlotVersionTest.java | 1 - 525 files changed, 525 deletions(-) diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitCommand.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitCommand.java index f1ee49802..1ba24bbde 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitCommand.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitCommand.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit; import com.plotsquared.bukkit.util.BukkitUtil; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java index 9ee61df1d..bdad258d7 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit; import com.google.inject.Guice; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/AgeableStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/AgeableStats.java index 1f74014af..21efd616e 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/AgeableStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/AgeableStats.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.entity; class AgeableStats { diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ArmorStandStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ArmorStandStats.java index 9d03263a1..bd81de12d 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ArmorStandStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ArmorStandStats.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.entity; class ArmorStandStats { diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityBaseStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityBaseStats.java index bee5090ef..b2be16c84 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityBaseStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityBaseStats.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.entity; class EntityBaseStats { diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityWrapper.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityWrapper.java index 71aa29953..581fded37 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityWrapper.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/EntityWrapper.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.entity; import org.bukkit.Location; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/HorseStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/HorseStats.java index 70e2e7903..360125a46 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/HorseStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/HorseStats.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.entity; import org.bukkit.entity.Horse; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/LivingEntityStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/LivingEntityStats.java index 87df6fc51..6445370aa 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/LivingEntityStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/LivingEntityStats.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.entity; import org.bukkit.inventory.ItemStack; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ReplicatingEntityWrapper.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ReplicatingEntityWrapper.java index 99fef4e41..e19f5b641 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ReplicatingEntityWrapper.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/ReplicatingEntityWrapper.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.entity; import com.plotsquared.core.configuration.Settings; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TameableStats.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TameableStats.java index 3dac07eb3..e4e6ae54e 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TameableStats.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TameableStats.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.entity; import org.bukkit.entity.AnimalTamer; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TeleportEntityWrapper.java b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TeleportEntityWrapper.java index 60b04c622..c829c0739 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TeleportEntityWrapper.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/entity/TeleportEntityWrapper.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.entity; import com.plotsquared.bukkit.BukkitPlatform; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BlockStatePopulator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BlockStatePopulator.java index 43c8c7cf8..662ff8703 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BlockStatePopulator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BlockStatePopulator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.generator; import com.plotsquared.core.PlotSquared; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitAugmentedGenerator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitAugmentedGenerator.java index cb6c08caf..dc8a6a5ef 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitAugmentedGenerator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitAugmentedGenerator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.generator; import com.plotsquared.core.generator.AugmentedUtils; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitPlotGenerator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitPlotGenerator.java index 83515be34..67b177770 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitPlotGenerator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/BukkitPlotGenerator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.generator; import com.plotsquared.bukkit.queue.GenChunk; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/DelegatePlotGenerator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/DelegatePlotGenerator.java index e07f07e87..dcd896b49 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/generator/DelegatePlotGenerator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/generator/DelegatePlotGenerator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.generator; import com.plotsquared.bukkit.util.BukkitUtil; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BackupModule.java b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BackupModule.java index 912d91a47..e155a99b2 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BackupModule.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BackupModule.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.inject; import com.google.inject.AbstractModule; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BukkitModule.java b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BukkitModule.java index e72914694..e9fb0d92f 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BukkitModule.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/BukkitModule.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.inject; import com.google.inject.AbstractModule; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/PermissionModule.java b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/PermissionModule.java index 030ef0670..2f2cc97fa 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/PermissionModule.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/PermissionModule.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.inject; import com.google.inject.AbstractModule; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/WorldManagerModule.java b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/WorldManagerModule.java index 474545324..413662ca1 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/inject/WorldManagerModule.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/inject/WorldManagerModule.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.inject; import com.google.inject.AbstractModule; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/BlockEventListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/BlockEventListener.java index 2174d5142..3961393db 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/BlockEventListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/BlockEventListener.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.listener; import com.plotsquared.bukkit.player.BukkitPlayer; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ChunkListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ChunkListener.java index f090d02a5..703cd631b 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ChunkListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ChunkListener.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.listener; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntityEventListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntityEventListener.java index 8c5cc46c4..6da88779e 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntityEventListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntityEventListener.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.listener; import com.plotsquared.bukkit.util.BukkitEntityUtil; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntitySpawnListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntitySpawnListener.java index 60836f63b..21152b8e4 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntitySpawnListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/EntitySpawnListener.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.listener; import com.plotsquared.bukkit.util.BukkitEntityUtil; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ForceFieldListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ForceFieldListener.java index 1083cfb31..b3a5802d2 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ForceFieldListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ForceFieldListener.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.listener; import com.google.common.collect.Iterables; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java index fdbee1210..73a823ffe 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.listener; import com.destroystokyo.paper.event.entity.EntityPathfindEvent; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener113.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener113.java index c920eaeda..4a92ae36b 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener113.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PaperListener113.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.listener; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java index 4697c3fae..496d19482 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/PlayerEventListener.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.listener; import com.destroystokyo.paper.MaterialTags; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ProjectileEventListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ProjectileEventListener.java index 2eb7c2dd9..623b76190 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ProjectileEventListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ProjectileEventListener.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.listener; import com.plotsquared.bukkit.util.BukkitEntityUtil; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ServerListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ServerListener.java index c1a36863c..1fa5ed699 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ServerListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/ServerListener.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.listener; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java index 1c62a09dc..5c550bf2f 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/SingleWorldListener.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.listener; import com.plotsquared.core.PlotSquared; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/WorldEvents.java b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/WorldEvents.java index 4938eeddc..7498b9b01 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/listener/WorldEvents.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/listener/WorldEvents.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.listener; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/BukkitWorldManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/BukkitWorldManager.java index 4cb260164..eec3c2b42 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/BukkitWorldManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/BukkitWorldManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.managers; import com.google.inject.Singleton; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/HyperverseWorldManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/HyperverseWorldManager.java index 85adc272c..1ef8cadd9 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/HyperverseWorldManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/HyperverseWorldManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.managers; import com.google.inject.Singleton; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/MultiverseWorldManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/MultiverseWorldManager.java index e3a2c16ec..1477148f7 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/managers/MultiverseWorldManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/managers/MultiverseWorldManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.managers; import com.google.inject.Singleton; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/BukkitPermissionHandler.java b/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/BukkitPermissionHandler.java index 8b43ac4e5..66b47fec3 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/BukkitPermissionHandler.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/BukkitPermissionHandler.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.permissions; import com.plotsquared.bukkit.player.BukkitPlayer; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/VaultPermissionHandler.java b/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/VaultPermissionHandler.java index 432f590d6..51d7cf2b2 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/VaultPermissionHandler.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/permissions/VaultPermissionHandler.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.permissions; import com.plotsquared.bukkit.player.BukkitOfflinePlayer; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/MVdWPlaceholders.java b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/MVdWPlaceholders.java index f0d13ad6c..f1876ccd3 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/MVdWPlaceholders.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/MVdWPlaceholders.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.placeholder; import be.maximvdw.placeholderapi.PlaceholderAPI; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PAPIPlaceholders.java b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PAPIPlaceholders.java index 150e041e9..5e05f5e95 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PAPIPlaceholders.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PAPIPlaceholders.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.placeholder; import com.plotsquared.core.PlotSquared; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PlaceholderFormatter.java b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PlaceholderFormatter.java index 229016e7f..050b881e1 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PlaceholderFormatter.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/placeholder/PlaceholderFormatter.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.placeholder; import com.plotsquared.bukkit.player.BukkitPlayer; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitOfflinePlayer.java b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitOfflinePlayer.java index 7a9dd7cac..13e34166d 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitOfflinePlayer.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitOfflinePlayer.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.player; import com.plotsquared.core.permissions.NullPermissionProfile; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayer.java b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayer.java index 5f8c331ec..6fad843db 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayer.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayer.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.player; import com.google.common.base.Charsets; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayerManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayerManager.java index 216ba7641..a84f4f178 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayerManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/player/BukkitPlayerManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.player; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitChunkCoordinator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitChunkCoordinator.java index 369b6fa2d..8d50f7a11 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitChunkCoordinator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitChunkCoordinator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.queue; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitQueueCoordinator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitQueueCoordinator.java index 1e0d53fb5..a0e5b028f 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitQueueCoordinator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/BukkitQueueCoordinator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.queue; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/ChunkCoordinator.java b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/ChunkCoordinator.java index 083eafbb8..97d2f6eab 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/ChunkCoordinator.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/ChunkCoordinator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.queue; import com.google.common.base.Preconditions; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/GenChunk.java b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/GenChunk.java index 412c0aace..4ccbdf6a1 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/queue/GenChunk.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/queue/GenChunk.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.queue; import com.google.common.base.Preconditions; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/BukkitSchematicHandler.java b/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/BukkitSchematicHandler.java index 15c2dc2c9..4d10fc316 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/BukkitSchematicHandler.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/BukkitSchematicHandler.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.schematic; import com.google.inject.Inject; 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 c1cebb8d5..9c51d2663 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/StateWrapper.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/schematic/StateWrapper.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.schematic; import com.plotsquared.bukkit.util.BukkitUtil; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitBlockUtil.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitBlockUtil.java index 1487c4fb5..67ac72cf7 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitBlockUtil.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitBlockUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util; import com.sk89q.worldedit.bukkit.BukkitAdapter; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChunkManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChunkManager.java index 7d3401eb4..502c5696c 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChunkManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitChunkManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util; import com.google.inject.Singleton; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEconHandler.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEconHandler.java index 6bb4fe942..2f33928b8 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEconHandler.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEconHandler.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util; import com.google.inject.Singleton; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEntityUtil.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEntityUtil.java index fba1edf74..356b2615f 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEntityUtil.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitEntityUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util; import com.plotsquared.bukkit.player.BukkitPlayer; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitInventoryUtil.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitInventoryUtil.java index 951e924f7..dd312fe51 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitInventoryUtil.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitInventoryUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util; import com.google.inject.Singleton; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitRegionManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitRegionManager.java index ec354dc8c..11c98a27b 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitRegionManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitRegionManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitSetupUtils.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitSetupUtils.java index 858e5b874..c403b0e36 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitSetupUtils.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitSetupUtils.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java index 18fd001b3..5632f4103 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util; import com.google.inject.Singleton; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitWorld.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitWorld.java index da58c095d..8fdcede9d 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitWorld.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/BukkitWorld.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util; import com.google.common.collect.Maps; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/ContentMap.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/ContentMap.java index 395c5272b..ceeb6e6b1 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/ContentMap.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/ContentMap.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util; import com.plotsquared.bukkit.entity.EntityWrapper; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/SetGenCB.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/SetGenCB.java index d98f1ee08..ccfe40be0 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/SetGenCB.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/SetGenCB.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util; import com.plotsquared.bukkit.generator.BukkitAugmentedGenerator; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/UpdateUtility.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/UpdateUtility.java index f34ae56ac..faa9d8817 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/UpdateUtility.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/UpdateUtility.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util; import com.google.gson.JsonObject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitPlotSquaredTask.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitPlotSquaredTask.java index 028134383..4e293d409 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitPlotSquaredTask.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitPlotSquaredTask.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util.task; import com.plotsquared.core.util.task.PlotSquaredTask; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitTaskManager.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitTaskManager.java index e9cee348d..df47e48a2 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitTaskManager.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/BukkitTaskManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util.task; import com.google.inject.Inject; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/PaperTimeConverter.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/PaperTimeConverter.java index c0fc7534b..c5bfb44cf 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/PaperTimeConverter.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/PaperTimeConverter.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util.task; import com.plotsquared.core.util.task.TaskTime; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/SpigotTimeConverter.java b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/SpigotTimeConverter.java index 40c43008f..862e22c50 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/SpigotTimeConverter.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/util/task/SpigotTimeConverter.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.util.task; import com.plotsquared.core.util.task.TaskTime; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/EssentialsUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/EssentialsUUIDService.java index d85a89890..e03fc3317 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/EssentialsUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/EssentialsUUIDService.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.uuid; import com.earth2me.essentials.Essentials; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/LuckPermsUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/LuckPermsUUIDService.java index d34ab0d40..be5ca5c7f 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/LuckPermsUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/LuckPermsUUIDService.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.uuid; import com.plotsquared.core.uuid.UUIDMapping; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/OfflinePlayerUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/OfflinePlayerUUIDService.java index 2320780b7..7351f240d 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/OfflinePlayerUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/OfflinePlayerUUIDService.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.uuid; import com.google.common.base.Charsets; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/PaperUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/PaperUUIDService.java index 193aa59f3..3700171d1 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/PaperUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/PaperUUIDService.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.uuid; import com.destroystokyo.paper.profile.PlayerProfile; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SQLiteUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SQLiteUUIDService.java index 9156656af..8f1bbe684 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SQLiteUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SQLiteUUIDService.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.uuid; import com.plotsquared.core.PlotSquared; diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SquirrelIdUUIDService.java b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SquirrelIdUUIDService.java index 30d6a2e01..f3438fae9 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SquirrelIdUUIDService.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/uuid/SquirrelIdUUIDService.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.bukkit.uuid; import com.google.common.util.concurrent.RateLimiter; diff --git a/Core/src/main/java/com/plotsquared/core/Platform.java b/Core/src/main/java/com/plotsquared/core/Platform.java index b23762b24..ff5187bae 100644 --- a/Core/src/main/java/com/plotsquared/core/Platform.java +++ b/Core/src/main/java/com/plotsquared/core/Platform.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core; public enum Platform { diff --git a/Core/src/main/java/com/plotsquared/core/PlotAPI.java b/Core/src/main/java/com/plotsquared/core/PlotAPI.java index 106c56b54..71dbf5c07 100644 --- a/Core/src/main/java/com/plotsquared/core/PlotAPI.java +++ b/Core/src/main/java/com/plotsquared/core/PlotAPI.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/PlotPlatform.java b/Core/src/main/java/com/plotsquared/core/PlotPlatform.java index 1971abaf7..3d6387bec 100644 --- a/Core/src/main/java/com/plotsquared/core/PlotPlatform.java +++ b/Core/src/main/java/com/plotsquared/core/PlotPlatform.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core; import com.google.inject.Injector; diff --git a/Core/src/main/java/com/plotsquared/core/PlotSquared.java b/Core/src/main/java/com/plotsquared/core/PlotSquared.java index 13984e01a..3cc968a1e 100644 --- a/Core/src/main/java/com/plotsquared/core/PlotSquared.java +++ b/Core/src/main/java/com/plotsquared/core/PlotSquared.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core; import com.plotsquared.core.configuration.ConfigurationSection; diff --git a/Core/src/main/java/com/plotsquared/core/PlotVersion.java b/Core/src/main/java/com/plotsquared/core/PlotVersion.java index 97b678a8e..019f23af3 100644 --- a/Core/src/main/java/com/plotsquared/core/PlotVersion.java +++ b/Core/src/main/java/com/plotsquared/core/PlotVersion.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core; public class PlotVersion { diff --git a/Core/src/main/java/com/plotsquared/core/backup/Backup.java b/Core/src/main/java/com/plotsquared/core/backup/Backup.java index 989abfe24..3fee60455 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/Backup.java +++ b/Core/src/main/java/com/plotsquared/core/backup/Backup.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.backup; import javax.annotation.Nullable; diff --git a/Core/src/main/java/com/plotsquared/core/backup/BackupManager.java b/Core/src/main/java/com/plotsquared/core/backup/BackupManager.java index edfcaf5c9..64da6c0ae 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/BackupManager.java +++ b/Core/src/main/java/com/plotsquared/core/backup/BackupManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.backup; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/backup/BackupProfile.java b/Core/src/main/java/com/plotsquared/core/backup/BackupProfile.java index 059ab3709..fc6310ecf 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/BackupProfile.java +++ b/Core/src/main/java/com/plotsquared/core/backup/BackupProfile.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.backup; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/backup/NullBackupManager.java b/Core/src/main/java/com/plotsquared/core/backup/NullBackupManager.java index 598bb011e..c237b49a6 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/NullBackupManager.java +++ b/Core/src/main/java/com/plotsquared/core/backup/NullBackupManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.backup; import com.google.inject.Singleton; diff --git a/Core/src/main/java/com/plotsquared/core/backup/NullBackupProfile.java b/Core/src/main/java/com/plotsquared/core/backup/NullBackupProfile.java index c42ab4dac..12460e9c5 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/NullBackupProfile.java +++ b/Core/src/main/java/com/plotsquared/core/backup/NullBackupProfile.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.backup; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/backup/PlayerBackupProfile.java b/Core/src/main/java/com/plotsquared/core/backup/PlayerBackupProfile.java index 73332ffa9..8366fe5bf 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/PlayerBackupProfile.java +++ b/Core/src/main/java/com/plotsquared/core/backup/PlayerBackupProfile.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.backup; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/backup/SimpleBackupManager.java b/Core/src/main/java/com/plotsquared/core/backup/SimpleBackupManager.java index 851927cf2..2d0794d4b 100644 --- a/Core/src/main/java/com/plotsquared/core/backup/SimpleBackupManager.java +++ b/Core/src/main/java/com/plotsquared/core/backup/SimpleBackupManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.backup; import com.google.common.cache.Cache; diff --git a/Core/src/main/java/com/plotsquared/core/collection/ArrayUtil.java b/Core/src/main/java/com/plotsquared/core/collection/ArrayUtil.java index ceafeede4..83e8ee272 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/ArrayUtil.java +++ b/Core/src/main/java/com/plotsquared/core/collection/ArrayUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.collection; import java.util.Arrays; diff --git a/Core/src/main/java/com/plotsquared/core/collection/ByteArrayUtilities.java b/Core/src/main/java/com/plotsquared/core/collection/ByteArrayUtilities.java index fac597903..119879e76 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/ByteArrayUtilities.java +++ b/Core/src/main/java/com/plotsquared/core/collection/ByteArrayUtilities.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.collection; public class ByteArrayUtilities { diff --git a/Core/src/main/java/com/plotsquared/core/collection/FlatRandomCollection.java b/Core/src/main/java/com/plotsquared/core/collection/FlatRandomCollection.java index 2808d301a..1a0896988 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/FlatRandomCollection.java +++ b/Core/src/main/java/com/plotsquared/core/collection/FlatRandomCollection.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.collection; import com.plotsquared.core.util.MathMan; diff --git a/Core/src/main/java/com/plotsquared/core/collection/QuadMap.java b/Core/src/main/java/com/plotsquared/core/collection/QuadMap.java index b1ed75b0a..efe9caa14 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/QuadMap.java +++ b/Core/src/main/java/com/plotsquared/core/collection/QuadMap.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.collection; import com.plotsquared.core.util.RegionUtil; diff --git a/Core/src/main/java/com/plotsquared/core/collection/RandomCollection.java b/Core/src/main/java/com/plotsquared/core/collection/RandomCollection.java index c9cc8b91e..2be11b956 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/RandomCollection.java +++ b/Core/src/main/java/com/plotsquared/core/collection/RandomCollection.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.collection; import java.util.Map; diff --git a/Core/src/main/java/com/plotsquared/core/collection/SimpleRandomCollection.java b/Core/src/main/java/com/plotsquared/core/collection/SimpleRandomCollection.java index 617fa23c6..c63461325 100644 --- a/Core/src/main/java/com/plotsquared/core/collection/SimpleRandomCollection.java +++ b/Core/src/main/java/com/plotsquared/core/collection/SimpleRandomCollection.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.collection; import java.util.Map; diff --git a/Core/src/main/java/com/plotsquared/core/command/Add.java b/Core/src/main/java/com/plotsquared/core/command/Add.java index 55bc7c121..836ed2d11 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Add.java +++ b/Core/src/main/java/com/plotsquared/core/command/Add.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Alias.java b/Core/src/main/java/com/plotsquared/core/command/Alias.java index 77183a89b..ec5e35bab 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Alias.java +++ b/Core/src/main/java/com/plotsquared/core/command/Alias.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/command/Area.java b/Core/src/main/java/com/plotsquared/core/command/Area.java index 582ca7b24..8d1bc9a75 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Area.java +++ b/Core/src/main/java/com/plotsquared/core/command/Area.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Argument.java b/Core/src/main/java/com/plotsquared/core/command/Argument.java index e2a011fc0..3ccd4aed3 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Argument.java +++ b/Core/src/main/java/com/plotsquared/core/command/Argument.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.plot.PlotId; diff --git a/Core/src/main/java/com/plotsquared/core/command/Auto.java b/Core/src/main/java/com/plotsquared/core/command/Auto.java index a1055f9fb..6cdbdf627 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Auto.java +++ b/Core/src/main/java/com/plotsquared/core/command/Auto.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.common.reflect.TypeToken; diff --git a/Core/src/main/java/com/plotsquared/core/command/Backup.java b/Core/src/main/java/com/plotsquared/core/command/Backup.java index 241025352..5ba71cc03 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Backup.java +++ b/Core/src/main/java/com/plotsquared/core/command/Backup.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Biome.java b/Core/src/main/java/com/plotsquared/core/command/Biome.java index 36792bcf1..de6c46fbb 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Biome.java +++ b/Core/src/main/java/com/plotsquared/core/command/Biome.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Buy.java b/Core/src/main/java/com/plotsquared/core/command/Buy.java index 6efabe319..a4326112a 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Buy.java +++ b/Core/src/main/java/com/plotsquared/core/command/Buy.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Caps.java b/Core/src/main/java/com/plotsquared/core/command/Caps.java index b7907dc28..9f495cd9c 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Caps.java +++ b/Core/src/main/java/com/plotsquared/core/command/Caps.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Chat.java b/Core/src/main/java/com/plotsquared/core/command/Chat.java index 4670c29d0..e0f44813d 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Chat.java +++ b/Core/src/main/java/com/plotsquared/core/command/Chat.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Claim.java b/Core/src/main/java/com/plotsquared/core/command/Claim.java index 68c01a7d8..50c6ebb6f 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Claim.java +++ b/Core/src/main/java/com/plotsquared/core/command/Claim.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Clear.java b/Core/src/main/java/com/plotsquared/core/command/Clear.java index 1bd08050e..da40ef248 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Clear.java +++ b/Core/src/main/java/com/plotsquared/core/command/Clear.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Cluster.java b/Core/src/main/java/com/plotsquared/core/command/Cluster.java index 949f60b10..4a4ae37f2 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Cluster.java +++ b/Core/src/main/java/com/plotsquared/core/command/Cluster.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/command/CmdConfirm.java b/Core/src/main/java/com/plotsquared/core/command/CmdConfirm.java index d450a5866..3b91d7cf1 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CmdConfirm.java +++ b/Core/src/main/java/com/plotsquared/core/command/CmdConfirm.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/CmdInstance.java b/Core/src/main/java/com/plotsquared/core/command/CmdInstance.java index f0fe30b96..b0a66685e 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CmdInstance.java +++ b/Core/src/main/java/com/plotsquared/core/command/CmdInstance.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; public class CmdInstance { diff --git a/Core/src/main/java/com/plotsquared/core/command/Command.java b/Core/src/main/java/com/plotsquared/core/command/Command.java index c40c37726..006b93433 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Command.java +++ b/Core/src/main/java/com/plotsquared/core/command/Command.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/command/CommandCaller.java b/Core/src/main/java/com/plotsquared/core/command/CommandCaller.java index ddcfe502e..e2e804e68 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CommandCaller.java +++ b/Core/src/main/java/com/plotsquared/core/command/CommandCaller.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java b/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java index 2e7dc5ee2..5544edf6a 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java +++ b/Core/src/main/java/com/plotsquared/core/command/CommandCategory.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/command/CommandDeclaration.java b/Core/src/main/java/com/plotsquared/core/command/CommandDeclaration.java index 5b8b7d68d..8213300f9 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CommandDeclaration.java +++ b/Core/src/main/java/com/plotsquared/core/command/CommandDeclaration.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import java.lang.annotation.ElementType; diff --git a/Core/src/main/java/com/plotsquared/core/command/Comment.java b/Core/src/main/java/com/plotsquared/core/command/Comment.java index 55b65b1b1..25766f3f0 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Comment.java +++ b/Core/src/main/java/com/plotsquared/core/command/Comment.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/command/Condense.java b/Core/src/main/java/com/plotsquared/core/command/Condense.java index 26ecfe24e..01891ca56 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Condense.java +++ b/Core/src/main/java/com/plotsquared/core/command/Condense.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Confirm.java b/Core/src/main/java/com/plotsquared/core/command/Confirm.java index 039bbcf64..9ed7b7f35 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Confirm.java +++ b/Core/src/main/java/com/plotsquared/core/command/Confirm.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/command/Continue.java b/Core/src/main/java/com/plotsquared/core/command/Continue.java index 347969d99..49ffeca04 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Continue.java +++ b/Core/src/main/java/com/plotsquared/core/command/Continue.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Copy.java b/Core/src/main/java/com/plotsquared/core/command/Copy.java index 969f7d720..64ae43b8a 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Copy.java +++ b/Core/src/main/java/com/plotsquared/core/command/Copy.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.permissions.Permission; diff --git a/Core/src/main/java/com/plotsquared/core/command/CreateRoadSchematic.java b/Core/src/main/java/com/plotsquared/core/command/CreateRoadSchematic.java index 3cd003ca1..da4d67b42 100644 --- a/Core/src/main/java/com/plotsquared/core/command/CreateRoadSchematic.java +++ b/Core/src/main/java/com/plotsquared/core/command/CreateRoadSchematic.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java b/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java index 2e10b72ee..09382ca9a 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/DatabaseCommand.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Debug.java b/Core/src/main/java/com/plotsquared/core/command/Debug.java index 8d06cf640..67eb61d3f 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Debug.java +++ b/Core/src/main/java/com/plotsquared/core/command/Debug.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugAllowUnsafe.java b/Core/src/main/java/com/plotsquared/core/command/DebugAllowUnsafe.java index 07f8a92c3..08948bc29 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugAllowUnsafe.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugAllowUnsafe.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugExec.java b/Core/src/main/java/com/plotsquared/core/command/DebugExec.java index ee96594a5..c7fff2776 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugExec.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugExec.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.common.io.Files; diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugImportWorlds.java b/Core/src/main/java/com/plotsquared/core/command/DebugImportWorlds.java index 82a465697..22282d5e5 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugImportWorlds.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugImportWorlds.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.common.base.Charsets; diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugLoadTest.java b/Core/src/main/java/com/plotsquared/core/command/DebugLoadTest.java index 4bfd67708..00aa27558 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugLoadTest.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugLoadTest.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java b/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java index 9dc44bf00..7d67e2b29 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugPaste.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.gson.JsonObject; diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugRoadRegen.java b/Core/src/main/java/com/plotsquared/core/command/DebugRoadRegen.java index bf553283b..d95bbff35 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugRoadRegen.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugRoadRegen.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/DebugSaveTest.java b/Core/src/main/java/com/plotsquared/core/command/DebugSaveTest.java index 8001f565e..1274fb531 100644 --- a/Core/src/main/java/com/plotsquared/core/command/DebugSaveTest.java +++ b/Core/src/main/java/com/plotsquared/core/command/DebugSaveTest.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Delete.java b/Core/src/main/java/com/plotsquared/core/command/Delete.java index d26eb8dc4..8bd023ef8 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Delete.java +++ b/Core/src/main/java/com/plotsquared/core/command/Delete.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Deny.java b/Core/src/main/java/com/plotsquared/core/command/Deny.java index e5420b9b4..cfe357c42 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Deny.java +++ b/Core/src/main/java/com/plotsquared/core/command/Deny.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Desc.java b/Core/src/main/java/com/plotsquared/core/command/Desc.java index 2ad3fd752..24d3f165a 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Desc.java +++ b/Core/src/main/java/com/plotsquared/core/command/Desc.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Dislike.java b/Core/src/main/java/com/plotsquared/core/command/Dislike.java index 76a90e290..3e4db188c 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Dislike.java +++ b/Core/src/main/java/com/plotsquared/core/command/Dislike.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Done.java b/Core/src/main/java/com/plotsquared/core/command/Done.java index 4cc2e4afe..ab38a329b 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Done.java +++ b/Core/src/main/java/com/plotsquared/core/command/Done.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Download.java b/Core/src/main/java/com/plotsquared/core/command/Download.java index b45d719e4..b83eb4703 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Download.java +++ b/Core/src/main/java/com/plotsquared/core/command/Download.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/FlagCommand.java b/Core/src/main/java/com/plotsquared/core/command/FlagCommand.java index 26120dec1..b383a0db9 100644 --- a/Core/src/main/java/com/plotsquared/core/command/FlagCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/FlagCommand.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/command/Grant.java b/Core/src/main/java/com/plotsquared/core/command/Grant.java index 00951a2e0..a40c45ca8 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Grant.java +++ b/Core/src/main/java/com/plotsquared/core/command/Grant.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.common.primitives.Ints; diff --git a/Core/src/main/java/com/plotsquared/core/command/Help.java b/Core/src/main/java/com/plotsquared/core/command/Help.java index 0996582f1..8ec4f7e40 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Help.java +++ b/Core/src/main/java/com/plotsquared/core/command/Help.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.StaticCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java b/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java index c55f3abce..70058cf09 100644 --- a/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/HomeCommand.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Inbox.java b/Core/src/main/java/com/plotsquared/core/command/Inbox.java index 9d36f36c5..b722c2caa 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Inbox.java +++ b/Core/src/main/java/com/plotsquared/core/command/Inbox.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.TypeLiteral; diff --git a/Core/src/main/java/com/plotsquared/core/command/Info.java b/Core/src/main/java/com/plotsquared/core/command/Info.java index a2cccd0c0..dde661891 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Info.java +++ b/Core/src/main/java/com/plotsquared/core/command/Info.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.permissions.Permission; diff --git a/Core/src/main/java/com/plotsquared/core/command/Kick.java b/Core/src/main/java/com/plotsquared/core/command/Kick.java index 799df3029..11fb6352e 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Kick.java +++ b/Core/src/main/java/com/plotsquared/core/command/Kick.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Leave.java b/Core/src/main/java/com/plotsquared/core/command/Leave.java index 643fb20f3..7afa25ff7 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Leave.java +++ b/Core/src/main/java/com/plotsquared/core/command/Leave.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Like.java b/Core/src/main/java/com/plotsquared/core/command/Like.java index 265a3f252..199bd09e3 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Like.java +++ b/Core/src/main/java/com/plotsquared/core/command/Like.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/ListCmd.java b/Core/src/main/java/com/plotsquared/core/command/ListCmd.java index 803481e83..a396b010e 100644 --- a/Core/src/main/java/com/plotsquared/core/command/ListCmd.java +++ b/Core/src/main/java/com/plotsquared/core/command/ListCmd.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Load.java b/Core/src/main/java/com/plotsquared/core/command/Load.java index 5c4c91878..585a41234 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Load.java +++ b/Core/src/main/java/com/plotsquared/core/command/Load.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/MainCommand.java b/Core/src/main/java/com/plotsquared/core/command/MainCommand.java index aa1cec435..b90588562 100644 --- a/Core/src/main/java/com/plotsquared/core/command/MainCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/MainCommand.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Injector; diff --git a/Core/src/main/java/com/plotsquared/core/command/Merge.java b/Core/src/main/java/com/plotsquared/core/command/Merge.java index 18e232024..cbc59fc8f 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Merge.java +++ b/Core/src/main/java/com/plotsquared/core/command/Merge.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Middle.java b/Core/src/main/java/com/plotsquared/core/command/Middle.java index 989faa47d..a8342c6df 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Middle.java +++ b/Core/src/main/java/com/plotsquared/core/command/Middle.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Move.java b/Core/src/main/java/com/plotsquared/core/command/Move.java index 564a2dac3..e4c2a64d3 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Move.java +++ b/Core/src/main/java/com/plotsquared/core/command/Move.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Music.java b/Core/src/main/java/com/plotsquared/core/command/Music.java index 5fb78f888..ffab80dcf 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Music.java +++ b/Core/src/main/java/com/plotsquared/core/command/Music.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Near.java b/Core/src/main/java/com/plotsquared/core/command/Near.java index 928640f18..e14b14ddc 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Near.java +++ b/Core/src/main/java/com/plotsquared/core/command/Near.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Owner.java b/Core/src/main/java/com/plotsquared/core/command/Owner.java index e6f954d7c..c29034584 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Owner.java +++ b/Core/src/main/java/com/plotsquared/core/command/Owner.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java b/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java index 1a7fc50df..695b045f6 100644 --- a/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java +++ b/Core/src/main/java/com/plotsquared/core/command/PluginCmd.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/command/Purge.java b/Core/src/main/java/com/plotsquared/core/command/Purge.java index b2c50d1f4..2d75807b8 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Purge.java +++ b/Core/src/main/java/com/plotsquared/core/command/Purge.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Rate.java b/Core/src/main/java/com/plotsquared/core/command/Rate.java index 9d4286dd6..035ed41d3 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Rate.java +++ b/Core/src/main/java/com/plotsquared/core/command/Rate.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/RegenAllRoads.java b/Core/src/main/java/com/plotsquared/core/command/RegenAllRoads.java index bf84f4524..1583e19d2 100644 --- a/Core/src/main/java/com/plotsquared/core/command/RegenAllRoads.java +++ b/Core/src/main/java/com/plotsquared/core/command/RegenAllRoads.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Relight.java b/Core/src/main/java/com/plotsquared/core/command/Relight.java index c6e891e4b..184a99571 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Relight.java +++ b/Core/src/main/java/com/plotsquared/core/command/Relight.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Reload.java b/Core/src/main/java/com/plotsquared/core/command/Reload.java index 9bc0fb071..1d4e1298d 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Reload.java +++ b/Core/src/main/java/com/plotsquared/core/command/Reload.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Remove.java b/Core/src/main/java/com/plotsquared/core/command/Remove.java index 8a56fcf31..aeee2a30d 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Remove.java +++ b/Core/src/main/java/com/plotsquared/core/command/Remove.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/RequiredType.java b/Core/src/main/java/com/plotsquared/core/command/RequiredType.java index 8ee8aed2a..e09866aca 100644 --- a/Core/src/main/java/com/plotsquared/core/command/RequiredType.java +++ b/Core/src/main/java/com/plotsquared/core/command/RequiredType.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Save.java b/Core/src/main/java/com/plotsquared/core/command/Save.java index d98cf9744..636096943 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Save.java +++ b/Core/src/main/java/com/plotsquared/core/command/Save.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/SchematicCmd.java b/Core/src/main/java/com/plotsquared/core/command/SchematicCmd.java index 3737ad407..2146c81ab 100644 --- a/Core/src/main/java/com/plotsquared/core/command/SchematicCmd.java +++ b/Core/src/main/java/com/plotsquared/core/command/SchematicCmd.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.common.collect.Lists; diff --git a/Core/src/main/java/com/plotsquared/core/command/Set.java b/Core/src/main/java/com/plotsquared/core/command/Set.java index cf018dcbf..11015b70d 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Set.java +++ b/Core/src/main/java/com/plotsquared/core/command/Set.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/SetCommand.java b/Core/src/main/java/com/plotsquared/core/command/SetCommand.java index adf60f645..025baee87 100644 --- a/Core/src/main/java/com/plotsquared/core/command/SetCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/SetCommand.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/SetHome.java b/Core/src/main/java/com/plotsquared/core/command/SetHome.java index e1b811654..95940ea39 100644 --- a/Core/src/main/java/com/plotsquared/core/command/SetHome.java +++ b/Core/src/main/java/com/plotsquared/core/command/SetHome.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Setup.java b/Core/src/main/java/com/plotsquared/core/command/Setup.java index 950450775..eb870880b 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Setup.java +++ b/Core/src/main/java/com/plotsquared/core/command/Setup.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/SubCommand.java b/Core/src/main/java/com/plotsquared/core/command/SubCommand.java index 3920229c7..7b6768270 100644 --- a/Core/src/main/java/com/plotsquared/core/command/SubCommand.java +++ b/Core/src/main/java/com/plotsquared/core/command/SubCommand.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/command/Swap.java b/Core/src/main/java/com/plotsquared/core/command/Swap.java index 86883a6d0..6bb379c6c 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Swap.java +++ b/Core/src/main/java/com/plotsquared/core/command/Swap.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.permissions.Permission; diff --git a/Core/src/main/java/com/plotsquared/core/command/Target.java b/Core/src/main/java/com/plotsquared/core/command/Target.java index f34aa87e1..eccb5056a 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Target.java +++ b/Core/src/main/java/com/plotsquared/core/command/Target.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Template.java b/Core/src/main/java/com/plotsquared/core/command/Template.java index 5bb1dcffe..a384c74ac 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Template.java +++ b/Core/src/main/java/com/plotsquared/core/command/Template.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Toggle.java b/Core/src/main/java/com/plotsquared/core/command/Toggle.java index e9a434810..643d9e5a4 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Toggle.java +++ b/Core/src/main/java/com/plotsquared/core/command/Toggle.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/command/Trim.java b/Core/src/main/java/com/plotsquared/core/command/Trim.java index 3111ef7c1..7116f588c 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Trim.java +++ b/Core/src/main/java/com/plotsquared/core/command/Trim.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Trust.java b/Core/src/main/java/com/plotsquared/core/command/Trust.java index 506b21d77..965315f5a 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Trust.java +++ b/Core/src/main/java/com/plotsquared/core/command/Trust.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Unlink.java b/Core/src/main/java/com/plotsquared/core/command/Unlink.java index d0e28012e..1ee3fe370 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Unlink.java +++ b/Core/src/main/java/com/plotsquared/core/command/Unlink.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/Visit.java b/Core/src/main/java/com/plotsquared/core/command/Visit.java index 89647a8b1..b75182ee0 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Visit.java +++ b/Core/src/main/java/com/plotsquared/core/command/Visit.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/command/WE_Anywhere.java b/Core/src/main/java/com/plotsquared/core/command/WE_Anywhere.java index 2cc6fd7e9..110a67cdc 100644 --- a/Core/src/main/java/com/plotsquared/core/command/WE_Anywhere.java +++ b/Core/src/main/java/com/plotsquared/core/command/WE_Anywhere.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.command; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/components/ComponentCommand.java b/Core/src/main/java/com/plotsquared/core/components/ComponentCommand.java index 01aefd096..c2f45b58e 100644 --- a/Core/src/main/java/com/plotsquared/core/components/ComponentCommand.java +++ b/Core/src/main/java/com/plotsquared/core/components/ComponentCommand.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.components; import com.plotsquared.core.command.CommandCategory; diff --git a/Core/src/main/java/com/plotsquared/core/components/ComponentPreset.java b/Core/src/main/java/com/plotsquared/core/components/ComponentPreset.java index fa278466d..298d122a2 100644 --- a/Core/src/main/java/com/plotsquared/core/components/ComponentPreset.java +++ b/Core/src/main/java/com/plotsquared/core/components/ComponentPreset.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.components; import com.plotsquared.core.configuration.serialization.ConfigurationSerializable; diff --git a/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java b/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java index 04877022f..e775892da 100644 --- a/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java +++ b/Core/src/main/java/com/plotsquared/core/components/ComponentPresetManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.components; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Config.java b/Core/src/main/java/com/plotsquared/core/configuration/Config.java index 70439d2a7..7ae47fab6 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Config.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Config.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration; import com.plotsquared.core.configuration.Settings.Enabled_Components; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Configuration.java b/Core/src/main/java/com/plotsquared/core/configuration/Configuration.java index 2db9acb30..207262133 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Configuration.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Configuration.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration; import java.util.Map; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationNode.java b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationNode.java index e8c8bc355..71d9399c0 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationNode.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationNode.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration; import com.plotsquared.core.plot.BlockBucket; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationOptions.java b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationOptions.java index 1c6a0db9f..b7f4c457a 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationOptions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationOptions.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration; /** diff --git a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationSection.java b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationSection.java index 2f319d08f..8cc73f860 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationSection.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationSection.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration; import java.util.List; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationUtil.java b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationUtil.java index 5cb0effb4..2e2444bbc 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationUtil.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/ConfigurationUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration; import com.plotsquared.core.plot.BlockBucket; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/InvalidConfigurationException.java b/Core/src/main/java/com/plotsquared/core/configuration/InvalidConfigurationException.java index 5044cd31b..5b87b8e18 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/InvalidConfigurationException.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/InvalidConfigurationException.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration; /** diff --git a/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfiguration.java b/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfiguration.java index 8c40407fb..0e1ac50e4 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfiguration.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfiguration.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration; import java.util.Map; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfigurationOptions.java b/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfigurationOptions.java index 5b0712d0b..b0f0833cc 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfigurationOptions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/MemoryConfigurationOptions.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration; /** diff --git a/Core/src/main/java/com/plotsquared/core/configuration/MemorySection.java b/Core/src/main/java/com/plotsquared/core/configuration/MemorySection.java index e5feb770f..561947288 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/MemorySection.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/MemorySection.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration; import java.util.ArrayList; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java index dd3f573c5..6c8b4cb58 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Settings.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Settings.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration; import com.plotsquared.core.configuration.file.YamlConfiguration; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/Storage.java b/Core/src/main/java/com/plotsquared/core/configuration/Storage.java index 29e8a19f7..4a3bc2626 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/Storage.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/Storage.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration; import java.io.File; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/Caption.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/Caption.java index b2d5d7d1f..f826b7ed2 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/Caption.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/Caption.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; import com.plotsquared.core.configuration.caption.LocaleHolder; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionHolder.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionHolder.java index 9bd5c74d0..347c8e0fb 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionHolder.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionHolder.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; public class CaptionHolder { diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionLoader.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionLoader.java index 187914013..0e2d65c7f 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionLoader.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionLoader.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; import com.google.common.reflect.TypeToken; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionMap.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionMap.java index e72a3fd7c..02538ce08 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionMap.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionMap.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionUtility.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionUtility.java index dc0a5458d..22214266e 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionUtility.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/CaptionUtility.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/ChatFormatter.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/ChatFormatter.java index b3b543fad..ab886af1d 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/ChatFormatter.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/ChatFormatter.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/DummyCaptionMap.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/DummyCaptionMap.java index 2a361b472..4e6274fcc 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/DummyCaptionMap.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/DummyCaptionMap.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/LocaleHolder.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/LocaleHolder.java index 62948635c..1974abdb8 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/LocaleHolder.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/LocaleHolder.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; import com.plotsquared.core.player.ConsolePlayer; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/LocalizedCaptionMap.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/LocalizedCaptionMap.java index 51dfbdc2c..8412e21c9 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/LocalizedCaptionMap.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/LocalizedCaptionMap.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; import com.google.common.collect.ImmutableMap; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/NamespacedCaption.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/NamespacedCaption.java index 11bd17cbc..28167bf73 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/NamespacedCaption.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/NamespacedCaption.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/PerUserLocaleCaptionMap.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/PerUserLocaleCaptionMap.java index 0c63b59b8..83e2814cc 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/PerUserLocaleCaptionMap.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/PerUserLocaleCaptionMap.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/PlotSquaredChatFormatter.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/PlotSquaredChatFormatter.java index e6a499784..0b677ad38 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/PlotSquaredChatFormatter.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/PlotSquaredChatFormatter.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/StaticCaption.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/StaticCaption.java index d330479dc..cdc2cc309 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/StaticCaption.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/StaticCaption.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/Templates.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/Templates.java index 1677dfe8e..0fe96f0bd 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/Templates.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/Templates.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; import com.plotsquared.core.plot.PlotArea; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/caption/TranslatableCaption.java b/Core/src/main/java/com/plotsquared/core/configuration/caption/TranslatableCaption.java index 9eb6a43a7..a31a5df46 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/caption/TranslatableCaption.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/caption/TranslatableCaption.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.caption; import com.google.common.base.Objects; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfiguration.java b/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfiguration.java index 14b16ca47..6fe3881ae 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfiguration.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfiguration.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.file; import com.plotsquared.core.configuration.Configuration; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfigurationOptions.java b/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfigurationOptions.java index 4160b5709..47a2e10d5 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfigurationOptions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/FileConfigurationOptions.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.file; import com.plotsquared.core.configuration.Configuration; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfiguration.java b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfiguration.java index 09c37d869..3dd6c31c5 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfiguration.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfiguration.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.file; import com.plotsquared.core.configuration.Configuration; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfigurationOptions.java b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfigurationOptions.java index 4b288f80d..58f111d4d 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfigurationOptions.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConfigurationOptions.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.file; /** diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConstructor.java b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConstructor.java index 84cf36b6d..55642ea97 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConstructor.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlConstructor.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.file; import com.plotsquared.core.configuration.serialization.ConfigurationSerialization; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlRepresenter.java b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlRepresenter.java index 42f3c3146..6e7c6fc94 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/file/YamlRepresenter.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/file/YamlRepresenter.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.file; import com.plotsquared.core.configuration.ConfigurationSection; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerializable.java b/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerializable.java index 16f5f3868..780943325 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerializable.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerializable.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.serialization; import java.util.Map; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerialization.java b/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerialization.java index 4431a41a4..9ce425a8e 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerialization.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/serialization/ConfigurationSerialization.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.serialization; import com.plotsquared.core.configuration.Configuration; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/serialization/DelegateDeserialization.java b/Core/src/main/java/com/plotsquared/core/configuration/serialization/DelegateDeserialization.java index a9da039bf..d53a56245 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/serialization/DelegateDeserialization.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/serialization/DelegateDeserialization.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.serialization; import java.lang.annotation.ElementType; diff --git a/Core/src/main/java/com/plotsquared/core/configuration/serialization/SerializableAs.java b/Core/src/main/java/com/plotsquared/core/configuration/serialization/SerializableAs.java index db4726d0f..1b27fa764 100644 --- a/Core/src/main/java/com/plotsquared/core/configuration/serialization/SerializableAs.java +++ b/Core/src/main/java/com/plotsquared/core/configuration/serialization/SerializableAs.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.configuration.serialization; import java.lang.annotation.ElementType; diff --git a/Core/src/main/java/com/plotsquared/core/database/AbstractDB.java b/Core/src/main/java/com/plotsquared/core/database/AbstractDB.java index b0d295f3f..1ba59ecdd 100644 --- a/Core/src/main/java/com/plotsquared/core/database/AbstractDB.java +++ b/Core/src/main/java/com/plotsquared/core/database/AbstractDB.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.database; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/database/DBFunc.java b/Core/src/main/java/com/plotsquared/core/database/DBFunc.java index 86173a6c9..501da4284 100644 --- a/Core/src/main/java/com/plotsquared/core/database/DBFunc.java +++ b/Core/src/main/java/com/plotsquared/core/database/DBFunc.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.database; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/database/Database.java b/Core/src/main/java/com/plotsquared/core/database/Database.java index ce2a6194c..ff56af689 100644 --- a/Core/src/main/java/com/plotsquared/core/database/Database.java +++ b/Core/src/main/java/com/plotsquared/core/database/Database.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.database; import java.sql.Connection; diff --git a/Core/src/main/java/com/plotsquared/core/database/MySQL.java b/Core/src/main/java/com/plotsquared/core/database/MySQL.java index 788a66224..5c10c6bd5 100644 --- a/Core/src/main/java/com/plotsquared/core/database/MySQL.java +++ b/Core/src/main/java/com/plotsquared/core/database/MySQL.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.database; import com.plotsquared.core.configuration.Storage; diff --git a/Core/src/main/java/com/plotsquared/core/database/SQLManager.java b/Core/src/main/java/com/plotsquared/core/database/SQLManager.java index a1471dfd3..a17781d6c 100644 --- a/Core/src/main/java/com/plotsquared/core/database/SQLManager.java +++ b/Core/src/main/java/com/plotsquared/core/database/SQLManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.database; import com.google.common.base.Charsets; diff --git a/Core/src/main/java/com/plotsquared/core/database/SQLite.java b/Core/src/main/java/com/plotsquared/core/database/SQLite.java index 4560728a8..a315949fb 100644 --- a/Core/src/main/java/com/plotsquared/core/database/SQLite.java +++ b/Core/src/main/java/com/plotsquared/core/database/SQLite.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.database; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/database/StmtMod.java b/Core/src/main/java/com/plotsquared/core/database/StmtMod.java index 011b6acec..83b707e27 100644 --- a/Core/src/main/java/com/plotsquared/core/database/StmtMod.java +++ b/Core/src/main/java/com/plotsquared/core/database/StmtMod.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.database; import com.plotsquared.core.util.StringMan; diff --git a/Core/src/main/java/com/plotsquared/core/events/CancellablePlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/CancellablePlotEvent.java index 0e51d8e20..2ece5b574 100644 --- a/Core/src/main/java/com/plotsquared/core/events/CancellablePlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/CancellablePlotEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; /** diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerAutoPlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerAutoPlotEvent.java index 983f1328f..b397321bb 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerAutoPlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerAutoPlotEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.command.Claim; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerClaimPlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerClaimPlotEvent.java index e18d5da4f..518d79e5b 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerClaimPlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerClaimPlotEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.command.Claim; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerEnterPlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerEnterPlotEvent.java index c7ff5c6ec..cb16e2ded 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerEnterPlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerEnterPlotEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerLeavePlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerLeavePlotEvent.java index d720e4900..1d7a34619 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerLeavePlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerLeavePlotEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotDeniedEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotDeniedEvent.java index 9b1b2993a..1a982313b 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotDeniedEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotDeniedEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotHelperEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotHelperEvent.java index dfce59719..4858f7484 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotHelperEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotHelperEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotTrustedEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotTrustedEvent.java index d859cff5c..e9bf0cb31 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerPlotTrustedEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerPlotTrustedEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlayerTeleportToPlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlayerTeleportToPlotEvent.java index baac1e8c3..6d23706e3 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlayerTeleportToPlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlayerTeleportToPlotEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotAutoMergeEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotAutoMergeEvent.java index 3f9e769ff..d41115df8 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotAutoMergeEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotAutoMergeEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotChangeOwnerEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotChangeOwnerEvent.java index 1549ca6d1..bb934abcd 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotChangeOwnerEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotChangeOwnerEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotClearEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotClearEvent.java index 4ef667601..482cc1781 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotClearEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotClearEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotComponentSetEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotComponentSetEvent.java index dcdd2c5de..1d25e6751 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotComponentSetEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotComponentSetEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotDeleteEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotDeleteEvent.java index cd6c6713e..5b37111d5 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotDeleteEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotDeleteEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotDoneEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotDoneEvent.java index 22b60b025..fd873dd61 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotDoneEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotDoneEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotEvent.java index 14c7c133d..3f9bb1e87 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotFlagAddEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotFlagAddEvent.java index 21dc8fe14..68c3f2e4b 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotFlagAddEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotFlagAddEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotFlagEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotFlagEvent.java index fb6f77500..6d222ee97 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotFlagEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotFlagEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotFlagRemoveEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotFlagRemoveEvent.java index a898fcde7..968d80eee 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotFlagRemoveEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotFlagRemoveEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotMergeEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotMergeEvent.java index 4638020f1..36e70328a 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotMergeEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotMergeEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.location.Direction; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotPlayerEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotPlayerEvent.java index 0bdc27c33..cb34a6403 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotPlayerEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotPlayerEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotRateEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotRateEvent.java index 35a547057..047ee5d8a 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotRateEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotRateEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/events/PlotUnlinkEvent.java b/Core/src/main/java/com/plotsquared/core/events/PlotUnlinkEvent.java index 53c700135..4065773d7 100644 --- a/Core/src/main/java/com/plotsquared/core/events/PlotUnlinkEvent.java +++ b/Core/src/main/java/com/plotsquared/core/events/PlotUnlinkEvent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/events/Result.java b/Core/src/main/java/com/plotsquared/core/events/Result.java index 50a6d8a8b..cfabc02c0 100644 --- a/Core/src/main/java/com/plotsquared/core/events/Result.java +++ b/Core/src/main/java/com/plotsquared/core/events/Result.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; import java.util.HashMap; diff --git a/Core/src/main/java/com/plotsquared/core/events/TeleportCause.java b/Core/src/main/java/com/plotsquared/core/events/TeleportCause.java index ab80b99c8..33f103107 100644 --- a/Core/src/main/java/com/plotsquared/core/events/TeleportCause.java +++ b/Core/src/main/java/com/plotsquared/core/events/TeleportCause.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.events; public enum TeleportCause { diff --git a/Core/src/main/java/com/plotsquared/core/generator/AugmentedUtils.java b/Core/src/main/java/com/plotsquared/core/generator/AugmentedUtils.java index f02ddf229..f800d3c2c 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/AugmentedUtils.java +++ b/Core/src/main/java/com/plotsquared/core/generator/AugmentedUtils.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManager.java b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManager.java index 9c59875c5..ca8b5013a 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManagerComponent.java b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManagerComponent.java index 7620e0b6d..08288df67 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManagerComponent.java +++ b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotManagerComponent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java index dd7ace66a..cffc9c4f7 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/generator/ClassicPlotWorld.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import com.plotsquared.core.configuration.ConfigurationNode; diff --git a/Core/src/main/java/com/plotsquared/core/generator/GeneratorWrapper.java b/Core/src/main/java/com/plotsquared/core/generator/GeneratorWrapper.java index 82fa1f2be..191460b80 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/GeneratorWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/generator/GeneratorWrapper.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import com.plotsquared.core.plot.PlotArea; diff --git a/Core/src/main/java/com/plotsquared/core/generator/GridPlotManager.java b/Core/src/main/java/com/plotsquared/core/generator/GridPlotManager.java index 6e0ca22a9..7d088b3c2 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/GridPlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/generator/GridPlotManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import com.plotsquared.core.plot.PlotArea; diff --git a/Core/src/main/java/com/plotsquared/core/generator/GridPlotWorld.java b/Core/src/main/java/com/plotsquared/core/generator/GridPlotWorld.java index dd2f1b6a6..8a0fda080 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/GridPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/generator/GridPlotWorld.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import com.plotsquared.core.configuration.file.YamlConfiguration; 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 080a85f51..dd3730b20 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/HybridGen.java +++ b/Core/src/main/java/com/plotsquared/core/generator/HybridGen.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java b/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java index 4d5cc903a..95d330057 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/generator/HybridPlotManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import com.google.common.collect.Sets; diff --git a/Core/src/main/java/com/plotsquared/core/generator/HybridPlotWorld.java b/Core/src/main/java/com/plotsquared/core/generator/HybridPlotWorld.java index 289f09f2a..cff9f47d9 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/HybridPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/generator/HybridPlotWorld.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import com.google.inject.assistedinject.Assisted; diff --git a/Core/src/main/java/com/plotsquared/core/generator/HybridUtils.java b/Core/src/main/java/com/plotsquared/core/generator/HybridUtils.java index 38dc7ccb7..0384f12ae 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/HybridUtils.java +++ b/Core/src/main/java/com/plotsquared/core/generator/HybridUtils.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/generator/IndependentPlotGenerator.java b/Core/src/main/java/com/plotsquared/core/generator/IndependentPlotGenerator.java index dbaac5e41..5baf54822 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/IndependentPlotGenerator.java +++ b/Core/src/main/java/com/plotsquared/core/generator/IndependentPlotGenerator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/generator/SingleWorldGenerator.java b/Core/src/main/java/com/plotsquared/core/generator/SingleWorldGenerator.java index 1761d30a5..7f7f351d2 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/SingleWorldGenerator.java +++ b/Core/src/main/java/com/plotsquared/core/generator/SingleWorldGenerator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java b/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java index bd1d49551..54104cae5 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/generator/SquarePlotManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import com.plotsquared.core.location.Direction; diff --git a/Core/src/main/java/com/plotsquared/core/generator/SquarePlotWorld.java b/Core/src/main/java/com/plotsquared/core/generator/SquarePlotWorld.java index 95597aa7b..cf44fc2d3 100644 --- a/Core/src/main/java/com/plotsquared/core/generator/SquarePlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/generator/SquarePlotWorld.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.generator; import com.plotsquared.core.configuration.ConfigurationSection; diff --git a/Core/src/main/java/com/plotsquared/core/inject/annotations/BackgroundPipeline.java b/Core/src/main/java/com/plotsquared/core/inject/annotations/BackgroundPipeline.java index 33960cb33..a5fdfc228 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/annotations/BackgroundPipeline.java +++ b/Core/src/main/java/com/plotsquared/core/inject/annotations/BackgroundPipeline.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.inject.annotations; import com.google.inject.BindingAnnotation; diff --git a/Core/src/main/java/com/plotsquared/core/inject/annotations/ConfigFile.java b/Core/src/main/java/com/plotsquared/core/inject/annotations/ConfigFile.java index 8e07135bd..bdcd123b1 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/annotations/ConfigFile.java +++ b/Core/src/main/java/com/plotsquared/core/inject/annotations/ConfigFile.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.inject.annotations; import com.google.inject.BindingAnnotation; diff --git a/Core/src/main/java/com/plotsquared/core/inject/annotations/ConsoleActor.java b/Core/src/main/java/com/plotsquared/core/inject/annotations/ConsoleActor.java index db7361c7f..692adc964 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/annotations/ConsoleActor.java +++ b/Core/src/main/java/com/plotsquared/core/inject/annotations/ConsoleActor.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.inject.annotations; import com.google.inject.BindingAnnotation; diff --git a/Core/src/main/java/com/plotsquared/core/inject/annotations/DefaultGenerator.java b/Core/src/main/java/com/plotsquared/core/inject/annotations/DefaultGenerator.java index 5130b031c..7a0923106 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/annotations/DefaultGenerator.java +++ b/Core/src/main/java/com/plotsquared/core/inject/annotations/DefaultGenerator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.inject.annotations; import com.google.inject.BindingAnnotation; diff --git a/Core/src/main/java/com/plotsquared/core/inject/annotations/ImpromptuPipeline.java b/Core/src/main/java/com/plotsquared/core/inject/annotations/ImpromptuPipeline.java index 5458e7547..a921cfb97 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/annotations/ImpromptuPipeline.java +++ b/Core/src/main/java/com/plotsquared/core/inject/annotations/ImpromptuPipeline.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.inject.annotations; import com.google.inject.BindingAnnotation; diff --git a/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldConfig.java b/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldConfig.java index 1a0b31ad9..35a718678 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldConfig.java +++ b/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldConfig.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.inject.annotations; import com.google.inject.BindingAnnotation; diff --git a/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldFile.java b/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldFile.java index 5de6bd6d3..d56d6bac4 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldFile.java +++ b/Core/src/main/java/com/plotsquared/core/inject/annotations/WorldFile.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.inject.annotations; import com.google.inject.BindingAnnotation; diff --git a/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorBuilderFactory.java b/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorBuilderFactory.java index e679cc829..95d9ce52b 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorBuilderFactory.java +++ b/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorBuilderFactory.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.inject.factory; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorFactory.java b/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorFactory.java index 285066eb7..cda2e8e34 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorFactory.java +++ b/Core/src/main/java/com/plotsquared/core/inject/factory/ChunkCoordinatorFactory.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.inject.factory; import com.plotsquared.core.queue.ChunkCoordinator; diff --git a/Core/src/main/java/com/plotsquared/core/inject/factory/HybridPlotWorldFactory.java b/Core/src/main/java/com/plotsquared/core/inject/factory/HybridPlotWorldFactory.java index c5edadd32..4fde7bcbf 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/factory/HybridPlotWorldFactory.java +++ b/Core/src/main/java/com/plotsquared/core/inject/factory/HybridPlotWorldFactory.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.inject.factory; import com.google.inject.assistedinject.Assisted; diff --git a/Core/src/main/java/com/plotsquared/core/inject/factory/PlayerBackupProfileFactory.java b/Core/src/main/java/com/plotsquared/core/inject/factory/PlayerBackupProfileFactory.java index 6750fccff..72a3adb20 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/factory/PlayerBackupProfileFactory.java +++ b/Core/src/main/java/com/plotsquared/core/inject/factory/PlayerBackupProfileFactory.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.inject.factory; import com.plotsquared.core.backup.PlayerBackupProfile; diff --git a/Core/src/main/java/com/plotsquared/core/inject/modules/PlotSquaredModule.java b/Core/src/main/java/com/plotsquared/core/inject/modules/PlotSquaredModule.java index 79b081d5c..82c5549c3 100644 --- a/Core/src/main/java/com/plotsquared/core/inject/modules/PlotSquaredModule.java +++ b/Core/src/main/java/com/plotsquared/core/inject/modules/PlotSquaredModule.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.inject.modules; import com.google.inject.AbstractModule; diff --git a/Core/src/main/java/com/plotsquared/core/listener/ExtentWrapper.java b/Core/src/main/java/com/plotsquared/core/listener/ExtentWrapper.java index a95461727..85e8704fd 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/ExtentWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/listener/ExtentWrapper.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.listener; import com.sk89q.worldedit.extent.AbstractDelegateExtent; diff --git a/Core/src/main/java/com/plotsquared/core/listener/PlayerBlockEventType.java b/Core/src/main/java/com/plotsquared/core/listener/PlayerBlockEventType.java index f7974ea22..c31f0be29 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/PlayerBlockEventType.java +++ b/Core/src/main/java/com/plotsquared/core/listener/PlayerBlockEventType.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.listener; public enum PlayerBlockEventType { diff --git a/Core/src/main/java/com/plotsquared/core/listener/PlotListener.java b/Core/src/main/java/com/plotsquared/core/listener/PlotListener.java index 6064598f5..71fe1e28b 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/PlotListener.java +++ b/Core/src/main/java/com/plotsquared/core/listener/PlotListener.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.listener; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/listener/ProcessedWEExtent.java b/Core/src/main/java/com/plotsquared/core/listener/ProcessedWEExtent.java index 87e4697ab..58a302d42 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/ProcessedWEExtent.java +++ b/Core/src/main/java/com/plotsquared/core/listener/ProcessedWEExtent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.listener; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/listener/WEExtent.java b/Core/src/main/java/com/plotsquared/core/listener/WEExtent.java index 8fafab407..eeca518a8 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/WEExtent.java +++ b/Core/src/main/java/com/plotsquared/core/listener/WEExtent.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.listener; import com.plotsquared.core.util.WEManager; diff --git a/Core/src/main/java/com/plotsquared/core/listener/WESubscriber.java b/Core/src/main/java/com/plotsquared/core/listener/WESubscriber.java index da8581f89..c70a974b4 100644 --- a/Core/src/main/java/com/plotsquared/core/listener/WESubscriber.java +++ b/Core/src/main/java/com/plotsquared/core/listener/WESubscriber.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.listener; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/location/BlockLoc.java b/Core/src/main/java/com/plotsquared/core/location/BlockLoc.java index 88dc520d5..afe47a69d 100644 --- a/Core/src/main/java/com/plotsquared/core/location/BlockLoc.java +++ b/Core/src/main/java/com/plotsquared/core/location/BlockLoc.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.location; public class BlockLoc { diff --git a/Core/src/main/java/com/plotsquared/core/location/ChunkWrapper.java b/Core/src/main/java/com/plotsquared/core/location/ChunkWrapper.java index b9ba726e9..5861a8c52 100644 --- a/Core/src/main/java/com/plotsquared/core/location/ChunkWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/location/ChunkWrapper.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.location; import com.plotsquared.core.util.MathMan; diff --git a/Core/src/main/java/com/plotsquared/core/location/Direction.java b/Core/src/main/java/com/plotsquared/core/location/Direction.java index f04bc2aa1..ad0741408 100644 --- a/Core/src/main/java/com/plotsquared/core/location/Direction.java +++ b/Core/src/main/java/com/plotsquared/core/location/Direction.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.location; public enum Direction { diff --git a/Core/src/main/java/com/plotsquared/core/location/Location.java b/Core/src/main/java/com/plotsquared/core/location/Location.java index 30cfa84fc..603fb621c 100644 --- a/Core/src/main/java/com/plotsquared/core/location/Location.java +++ b/Core/src/main/java/com/plotsquared/core/location/Location.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.location; import com.google.common.base.Objects; diff --git a/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java b/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java index 29231d8a6..be257ce2d 100644 --- a/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java +++ b/Core/src/main/java/com/plotsquared/core/location/PlotLoc.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.location; import com.plotsquared.core.util.StringMan; diff --git a/Core/src/main/java/com/plotsquared/core/location/World.java b/Core/src/main/java/com/plotsquared/core/location/World.java index 9ffd5e1f2..4d7e97162 100644 --- a/Core/src/main/java/com/plotsquared/core/location/World.java +++ b/Core/src/main/java/com/plotsquared/core/location/World.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.location; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/permissions/ConsolePermissionProfile.java b/Core/src/main/java/com/plotsquared/core/permissions/ConsolePermissionProfile.java index 34906f0f8..41aea02e0 100644 --- a/Core/src/main/java/com/plotsquared/core/permissions/ConsolePermissionProfile.java +++ b/Core/src/main/java/com/plotsquared/core/permissions/ConsolePermissionProfile.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.permissions; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/permissions/NullPermissionProfile.java b/Core/src/main/java/com/plotsquared/core/permissions/NullPermissionProfile.java index 87c35a551..8f214e969 100644 --- a/Core/src/main/java/com/plotsquared/core/permissions/NullPermissionProfile.java +++ b/Core/src/main/java/com/plotsquared/core/permissions/NullPermissionProfile.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.permissions; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/permissions/Permission.java b/Core/src/main/java/com/plotsquared/core/permissions/Permission.java index a5e835990..27aa9fce8 100644 --- a/Core/src/main/java/com/plotsquared/core/permissions/Permission.java +++ b/Core/src/main/java/com/plotsquared/core/permissions/Permission.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.permissions; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/permissions/PermissionHandler.java b/Core/src/main/java/com/plotsquared/core/permissions/PermissionHandler.java index fc6f43eea..645669614 100644 --- a/Core/src/main/java/com/plotsquared/core/permissions/PermissionHandler.java +++ b/Core/src/main/java/com/plotsquared/core/permissions/PermissionHandler.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.permissions; import com.plotsquared.core.player.OfflinePlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/permissions/PermissionHolder.java b/Core/src/main/java/com/plotsquared/core/permissions/PermissionHolder.java index a05cbdaf6..2f5aff9a9 100644 --- a/Core/src/main/java/com/plotsquared/core/permissions/PermissionHolder.java +++ b/Core/src/main/java/com/plotsquared/core/permissions/PermissionHolder.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.permissions; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/permissions/PermissionProfile.java b/Core/src/main/java/com/plotsquared/core/permissions/PermissionProfile.java index 9e21ee3b6..8bab5e1bd 100644 --- a/Core/src/main/java/com/plotsquared/core/permissions/PermissionProfile.java +++ b/Core/src/main/java/com/plotsquared/core/permissions/PermissionProfile.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.permissions; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/player/ConsolePlayer.java b/Core/src/main/java/com/plotsquared/core/player/ConsolePlayer.java index c71509add..e45566bd4 100644 --- a/Core/src/main/java/com/plotsquared/core/player/ConsolePlayer.java +++ b/Core/src/main/java/com/plotsquared/core/player/ConsolePlayer.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.player; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/player/MetaDataAccess.java b/Core/src/main/java/com/plotsquared/core/player/MetaDataAccess.java index 9f42270f8..b3267a971 100644 --- a/Core/src/main/java/com/plotsquared/core/player/MetaDataAccess.java +++ b/Core/src/main/java/com/plotsquared/core/player/MetaDataAccess.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.player; import com.plotsquared.core.synchronization.LockRepository; diff --git a/Core/src/main/java/com/plotsquared/core/player/MetaDataKey.java b/Core/src/main/java/com/plotsquared/core/player/MetaDataKey.java index c524b9c4d..d611196f2 100644 --- a/Core/src/main/java/com/plotsquared/core/player/MetaDataKey.java +++ b/Core/src/main/java/com/plotsquared/core/player/MetaDataKey.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.player; import com.google.common.base.Objects; diff --git a/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java b/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java index d1ff62c9b..7a75ac4be 100644 --- a/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java +++ b/Core/src/main/java/com/plotsquared/core/player/OfflinePlotPlayer.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.player; import com.plotsquared.core.permissions.PermissionHolder; diff --git a/Core/src/main/java/com/plotsquared/core/player/PersistentMetaDataAccess.java b/Core/src/main/java/com/plotsquared/core/player/PersistentMetaDataAccess.java index 7f54ae0e8..59ffa843d 100644 --- a/Core/src/main/java/com/plotsquared/core/player/PersistentMetaDataAccess.java +++ b/Core/src/main/java/com/plotsquared/core/player/PersistentMetaDataAccess.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.player; import com.plotsquared.core.synchronization.LockRepository; diff --git a/Core/src/main/java/com/plotsquared/core/player/PlayerMetaDataKeys.java b/Core/src/main/java/com/plotsquared/core/player/PlayerMetaDataKeys.java index 669193018..43fa20fdf 100644 --- a/Core/src/main/java/com/plotsquared/core/player/PlayerMetaDataKeys.java +++ b/Core/src/main/java/com/plotsquared/core/player/PlayerMetaDataKeys.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.player; import com.google.inject.TypeLiteral; diff --git a/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java b/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java index 6861be1d7..5624f8ad8 100644 --- a/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java +++ b/Core/src/main/java/com/plotsquared/core/player/PlotPlayer.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.player; import com.google.common.base.Objects; diff --git a/Core/src/main/java/com/plotsquared/core/player/TemporaryMetaDataAccess.java b/Core/src/main/java/com/plotsquared/core/player/TemporaryMetaDataAccess.java index e86c43e6d..52a9f5a3b 100644 --- a/Core/src/main/java/com/plotsquared/core/player/TemporaryMetaDataAccess.java +++ b/Core/src/main/java/com/plotsquared/core/player/TemporaryMetaDataAccess.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.player; import com.plotsquared.core.synchronization.LockRepository; diff --git a/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java b/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java index d4951764d..027948fbe 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java +++ b/Core/src/main/java/com/plotsquared/core/plot/BlockBucket.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.google.common.collect.ImmutableMap; diff --git a/Core/src/main/java/com/plotsquared/core/plot/Plot.java b/Core/src/main/java/com/plotsquared/core/plot/Plot.java index 53a034ee6..c2689461e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/Plot.java +++ b/Core/src/main/java/com/plotsquared/core/plot/Plot.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.google.common.collect.ImmutableSet; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java b/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java index 1f846ac71..93545c0b6 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotArea.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.google.common.collect.ImmutableMap; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotAreaTerrainType.java b/Core/src/main/java/com/plotsquared/core/plot/PlotAreaTerrainType.java index 3fe666e8a..b9971c054 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotAreaTerrainType.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotAreaTerrainType.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import java.util.Map; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotAreaType.java b/Core/src/main/java/com/plotsquared/core/plot/PlotAreaType.java index 7d8f7d21f..f1471ea88 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotAreaType.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotAreaType.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotCluster.java b/Core/src/main/java/com/plotsquared/core/plot/PlotCluster.java index 7d34eb88f..9821e590e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotCluster.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotCluster.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotCommentContainer.java b/Core/src/main/java/com/plotsquared/core/plot/PlotCommentContainer.java index 2604657a5..ecb73331f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotCommentContainer.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotCommentContainer.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.plotsquared.core.plot.comment.PlotComment; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotHandler.java b/Core/src/main/java/com/plotsquared/core/plot/PlotHandler.java index 9047ad4e0..37a916a3b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotHandler.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotHandler.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import java.util.Set; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotId.java b/Core/src/main/java/com/plotsquared/core/plot/PlotId.java index 554197862..98a18dfa7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotId.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotId.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.plotsquared.core.location.Direction; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java b/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java index 6029f45d7..368b6922a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotInventory.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.plotsquared.core.player.MetaDataAccess; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java b/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java index 86dda1e4c..1b42fa86f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotItemStack.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.sk89q.worldedit.world.block.BlockState; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotManager.java b/Core/src/main/java/com/plotsquared/core/plot/PlotManager.java index d6a38cee5..21b810072 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.plotsquared.core.command.Template; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotModificationManager.java b/Core/src/main/java/com/plotsquared/core/plot/PlotModificationManager.java index cfc18ed86..cf56fe1a3 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotModificationManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotModificationManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotSettings.java b/Core/src/main/java/com/plotsquared/core/plot/PlotSettings.java index 1c91aa3a5..4b7d4ff46 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotSettings.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotSettings.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.google.common.collect.ImmutableList; diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java b/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java index cf750955b..9fda102f8 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotWeather.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; public enum PlotWeather { diff --git a/Core/src/main/java/com/plotsquared/core/plot/PlotWorld.java b/Core/src/main/java/com/plotsquared/core/plot/PlotWorld.java index 654dedc89..6f60add1f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/PlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/plot/PlotWorld.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/plot/Rating.java b/Core/src/main/java/com/plotsquared/core/plot/Rating.java index 0c8458cd0..902a4f7eb 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/Rating.java +++ b/Core/src/main/java/com/plotsquared/core/plot/Rating.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/CommentInbox.java b/Core/src/main/java/com/plotsquared/core/plot/comment/CommentInbox.java index ea0c17a1f..d8b8076cd 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/CommentInbox.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/CommentInbox.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.comment; import com.plotsquared.core.database.DBFunc; diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/CommentManager.java b/Core/src/main/java/com/plotsquared/core/plot/comment/CommentManager.java index 0fb1a0a92..28ecdba7b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/CommentManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/CommentManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.comment; import com.google.common.annotations.Beta; diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxOwner.java b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxOwner.java index 46c505f26..66f78ca42 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxOwner.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxOwner.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.comment; import com.plotsquared.core.database.DBFunc; diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxPublic.java b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxPublic.java index 70e5d56e7..85bf63b4d 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxPublic.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxPublic.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.comment; import com.plotsquared.core.database.DBFunc; diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxReport.java b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxReport.java index f9c42fd0a..4cacf1dee 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/InboxReport.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/InboxReport.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.comment; import com.plotsquared.core.database.DBFunc; diff --git a/Core/src/main/java/com/plotsquared/core/plot/comment/PlotComment.java b/Core/src/main/java/com/plotsquared/core/plot/comment/PlotComment.java index ebeb63475..42256369d 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/comment/PlotComment.java +++ b/Core/src/main/java/com/plotsquared/core/plot/comment/PlotComment.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.comment; import com.plotsquared.core.plot.PlotId; diff --git a/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpireManager.java b/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpireManager.java index 2bb550744..65e9c876c 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpireManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpireManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.expiration; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpiryTask.java b/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpiryTask.java index 7afc0c187..e8565d90c 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpiryTask.java +++ b/Core/src/main/java/com/plotsquared/core/plot/expiration/ExpiryTask.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.expiration; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/plot/expiration/PlotAnalysis.java b/Core/src/main/java/com/plotsquared/core/plot/expiration/PlotAnalysis.java index c6acda581..191c67996 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/expiration/PlotAnalysis.java +++ b/Core/src/main/java/com/plotsquared/core/plot/expiration/PlotAnalysis.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.expiration; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/FlagContainer.java b/Core/src/main/java/com/plotsquared/core/plot/flag/FlagContainer.java index 92a1ef1ea..887bf8968 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/FlagContainer.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/FlagContainer.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/FlagParseException.java b/Core/src/main/java/com/plotsquared/core/plot/flag/FlagParseException.java index eba85ae5e..2ca6f789e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/FlagParseException.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/FlagParseException.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java b/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java index e63df8809..5afb173b0 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/GlobalFlagContainer.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/InternalFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/InternalFlag.java index be7f4dda5..70050a433 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/InternalFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/InternalFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag; /** diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/PlotFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/PlotFlag.java index adc35f659..0dc23f9e2 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/PlotFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/PlotFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnalysisFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnalysisFlag.java index ffff7681a..8fd629611 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnalysisFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnalysisFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalAttackFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalAttackFlag.java index 2825cd2b9..ec4875653 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalAttackFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalAttackFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalCapFlag.java index e257499d3..ab0f9527f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalCapFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalInteractFlag.java index 38e21e09d..f15f557fa 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/AnimalInteractFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockBurnFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockBurnFlag.java index 131b160a9..66299e9dc 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockBurnFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockBurnFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockIgnitionFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockIgnitionFlag.java index f4c25b458..43fee6341 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockIgnitionFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockIgnitionFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockedCmdsFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockedCmdsFlag.java index 984602197..6bfbb9a00 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockedCmdsFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BlockedCmdsFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BreakFlag.java index d082b7f9e..89841fb03 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/BreakFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java index 2503799bd..a58d332ff 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ChatFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/CoralDryFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/CoralDryFlag.java index a11ccea96..7cf0090a5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/CoralDryFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/CoralDryFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyExitFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyExitFlag.java index 096cbfc14..3a5c49403 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyExitFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyExitFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyTeleportFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyTeleportFlag.java index 51e8466b2..e02cff6d7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyTeleportFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DenyTeleportFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DescriptionFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DescriptionFlag.java index 939f4cedf..ee4e74df2 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DescriptionFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DescriptionFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DeviceInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DeviceInteractFlag.java index fbe521b59..c18281591 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DeviceInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DeviceInteractFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DisablePhysicsFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DisablePhysicsFlag.java index 842046114..2141d9841 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DisablePhysicsFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DisablePhysicsFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DoneFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DoneFlag.java index 9369ac941..1ca1cf2f5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DoneFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DoneFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DropProtectionFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DropProtectionFlag.java index 041eb95d8..08269845a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DropProtectionFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/DropProtectionFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/EntityCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/EntityCapFlag.java index eca1d92d3..8ff0cab67 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/EntityCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/EntityCapFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ExplosionFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ExplosionFlag.java index 31fdcab12..3c3486e87 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ExplosionFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ExplosionFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FarewellFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FarewellFlag.java index 2f55ef653..796b98d26 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FarewellFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FarewellFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FeedFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FeedFlag.java index 6d66c0e26..aa5f2cb16 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FeedFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FeedFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FlyFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FlyFlag.java index a9d5c9d62..5116cb7ac 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FlyFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/FlyFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ForcefieldFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ForcefieldFlag.java index fc4d4834e..ee58a96f7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ForcefieldFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ForcefieldFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GamemodeFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GamemodeFlag.java index 24e04320e..242a01150 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GamemodeFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GamemodeFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GrassGrowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GrassGrowFlag.java index 1ca7593b5..c5b9223e5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GrassGrowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GrassGrowFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GreetingFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GreetingFlag.java index b7f093335..263ef1435 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GreetingFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GreetingFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GuestGamemodeFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GuestGamemodeFlag.java index 05141f5d6..903e911f2 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GuestGamemodeFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/GuestGamemodeFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingBreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingBreakFlag.java index ae4d92de7..f12e340ca 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingBreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingBreakFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingPlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingPlaceFlag.java index 2a79670a1..8a7f4c07a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingPlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HangingPlaceFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HealFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HealFlag.java index f635bb67d..9c3be3bad 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HealFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HealFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HideInfoFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HideInfoFlag.java index 1d1b7c4e2..034a43591 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HideInfoFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HideInfoFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileAttackFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileAttackFlag.java index bd5407c71..29204642e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileAttackFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileAttackFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileCapFlag.java index 087114943..3340369ba 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileCapFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileInteractFlag.java index 4d4281ebe..f7b06d719 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/HostileInteractFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceFormFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceFormFlag.java index 56a0fdb68..6b22c5a36 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceFormFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceFormFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceMeltFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceMeltFlag.java index 98a177d14..e48fa9010 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceMeltFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/IceMeltFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InstabreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InstabreakFlag.java index f51411d69..52570f4a6 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InstabreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InstabreakFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InvincibleFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InvincibleFlag.java index c1a97e009..5b5953539 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InvincibleFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/InvincibleFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ItemDropFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ItemDropFlag.java index dafa92de3..5df1c0002 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ItemDropFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ItemDropFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepFlag.java index 0fd19cf33..4c826e749 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepInventoryFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepInventoryFlag.java index 0c8a138ae..54813c8fb 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepInventoryFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KeepInventoryFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KelpGrowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KelpGrowFlag.java index e4dd1507e..2cd578a45 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KelpGrowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/KelpGrowFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/LiquidFlowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/LiquidFlowFlag.java index 653646a5c..feffb624c 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/LiquidFlowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/LiquidFlowFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscBreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscBreakFlag.java index ccd0e9b8e..fde931611 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscBreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscBreakFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscCapFlag.java index 39a106e53..6a6ec226b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscCapFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscInteractFlag.java index 0c1e72877..833f8a702 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscInteractFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscPlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscPlaceFlag.java index a05845a05..50664fad6 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscPlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MiscPlaceFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobBreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobBreakFlag.java index fa3359385..255ff474f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobBreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobBreakFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobCapFlag.java index b553ea868..018c37397 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobCapFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobPlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobPlaceFlag.java index dc9119afc..343fa8178 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobPlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MobPlaceFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MusicFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MusicFlag.java index efa6bdae4..59b47ce6b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MusicFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MusicFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MycelGrowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MycelGrowFlag.java index 94a64982a..f69b0cdf1 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MycelGrowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/MycelGrowFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NoWorldeditFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NoWorldeditFlag.java index 73eb39d90..b15aee39b 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NoWorldeditFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NoWorldeditFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyEnterFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyEnterFlag.java index 4fd82bda9..f0f20fcc7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyEnterFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyEnterFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyLeaveFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyLeaveFlag.java index c5a437a89..3d5930ec6 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyLeaveFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/NotifyLeaveFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlaceFlag.java index 5374b4e4a..555692bff 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlaceFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlayerInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlayerInteractFlag.java index 71171a0d1..3c64bf0b5 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlayerInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PlayerInteractFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PreventCreativeCopyFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PreventCreativeCopyFlag.java index b04952fc3..2c4f84fbe 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PreventCreativeCopyFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PreventCreativeCopyFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PriceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PriceFlag.java index f51d88859..9b6674fd6 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PriceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PriceFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PveFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PveFlag.java index a84af0e75..afa7d8d37 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PveFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PveFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PvpFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PvpFlag.java index 2e2a08c9e..d0121bfda 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PvpFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/PvpFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/RedstoneFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/RedstoneFlag.java index 4e43c3926..6958a0235 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/RedstoneFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/RedstoneFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ServerPlotFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ServerPlotFlag.java index 0e39dc30f..3bb16e3d1 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ServerPlotFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/ServerPlotFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java index edcc1e0f7..50eae78f2 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowFormFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowMeltFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowMeltFlag.java index a303ae46a..bdd5efecd 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowMeltFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SnowMeltFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SoilDryFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SoilDryFlag.java index 93c19b2a2..256772826 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SoilDryFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/SoilDryFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedAttackFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedAttackFlag.java index fddff7ca9..30e6ae72f 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedAttackFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedAttackFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedInteractFlag.java index 5aa639f22..abab95179 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TamedInteractFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TimeFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TimeFlag.java index c890ea203..872480981 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TimeFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TimeFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TitlesFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TitlesFlag.java index 21c3c21ca..5cb9cdf28 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TitlesFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/TitlesFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UntrustedVisitFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UntrustedVisitFlag.java index b4898bfac..2c3fc5705 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UntrustedVisitFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UntrustedVisitFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UseFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UseFlag.java index 232c3536d..628b0b0f7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UseFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/UseFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleBreakFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleBreakFlag.java index b17664013..767587d11 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleBreakFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleBreakFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleCapFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleCapFlag.java index 095a0a961..645e8e72e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleCapFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleCapFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehiclePlaceFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehiclePlaceFlag.java index 7bff65e6c..7ecb33f66 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehiclePlaceFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehiclePlaceFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleUseFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleUseFlag.java index 02fbcd637..cf515bd8a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleUseFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VehicleUseFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VillagerInteractFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VillagerInteractFlag.java index 771327a4e..092e46f6e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VillagerInteractFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VillagerInteractFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VineGrowFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VineGrowFlag.java index be112709b..27663612c 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VineGrowFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/VineGrowFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/WeatherFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/WeatherFlag.java index c1c6d07ce..999dbec97 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/WeatherFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/implementations/WeatherFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.implementations; import com.plotsquared.core.configuration.caption.TranslatableCaption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeListFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeListFlag.java index c32d4f27a..55ae04a96 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeListFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeListFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeWrapper.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeWrapper.java index 3b20ebfff..837c38668 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BlockTypeWrapper.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.types; import com.google.common.base.Objects; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BooleanFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BooleanFlag.java index 4bf53fdba..bf1ea4da7 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/BooleanFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/BooleanFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/DoubleFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/DoubleFlag.java index 0b5fbfa21..ac7beebe8 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/DoubleFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/DoubleFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/IntegerFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/IntegerFlag.java index ff573b1fb..1c061d369 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/IntegerFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/IntegerFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/ListFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/ListFlag.java index 5133945b3..e4c66e8cf 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/ListFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/ListFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/LongFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/LongFlag.java index 6069ea648..162dafe92 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/LongFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/LongFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/NonNegativeIntegerFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/NonNegativeIntegerFlag.java index 2eb06acea..dd6dceb80 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/NonNegativeIntegerFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/NonNegativeIntegerFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/NumberFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/NumberFlag.java index e5a31d095..2201a886e 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/NumberFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/NumberFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/flag/types/TimedFlag.java b/Core/src/main/java/com/plotsquared/core/plot/flag/types/TimedFlag.java index adf07eb29..f047aa6fb 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/flag/types/TimedFlag.java +++ b/Core/src/main/java/com/plotsquared/core/plot/flag/types/TimedFlag.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.flag.types; import com.plotsquared.core.configuration.caption.Caption; diff --git a/Core/src/main/java/com/plotsquared/core/plot/schematic/Schematic.java b/Core/src/main/java/com/plotsquared/core/plot/schematic/Schematic.java index c115a981b..37e9dd7b8 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/schematic/Schematic.java +++ b/Core/src/main/java/com/plotsquared/core/plot/schematic/Schematic.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.schematic; import com.sk89q.jnbt.NBTOutputStream; diff --git a/Core/src/main/java/com/plotsquared/core/plot/schematic/StoredEntity.java b/Core/src/main/java/com/plotsquared/core/plot/schematic/StoredEntity.java index f77a430e3..b6d7baff0 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/schematic/StoredEntity.java +++ b/Core/src/main/java/com/plotsquared/core/plot/schematic/StoredEntity.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.schematic; import com.sk89q.worldedit.entity.BaseEntity; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/DefaultPlotAreaManager.java b/Core/src/main/java/com/plotsquared/core/plot/world/DefaultPlotAreaManager.java index 662e92c81..000aec38a 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/DefaultPlotAreaManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/DefaultPlotAreaManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.world; import com.google.inject.Singleton; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/PlotAreaManager.java b/Core/src/main/java/com/plotsquared/core/plot/world/PlotAreaManager.java index 0be90e7f8..ccb6b0cff 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/PlotAreaManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/PlotAreaManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.world; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/ScatteredPlotWorld.java b/Core/src/main/java/com/plotsquared/core/plot/world/ScatteredPlotWorld.java index 22c5c2b89..19d443cee 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/ScatteredPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/ScatteredPlotWorld.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.world; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlot.java b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlot.java index f9c180ae4..7f6ce9d76 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlot.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlot.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.world; import com.plotsquared.core.location.BlockLoc; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotArea.java b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotArea.java index 6d4ed1e71..d2161fb43 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotArea.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotArea.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.world; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotAreaManager.java b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotAreaManager.java index 2da486971..a18e13532 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotAreaManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotAreaManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.world; import com.google.inject.Singleton; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java index 0259c0162..756409612 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/SinglePlotManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.world; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/plot/world/StandardPlotWorld.java b/Core/src/main/java/com/plotsquared/core/plot/world/StandardPlotWorld.java index d9f9d71ed..46aea0b92 100644 --- a/Core/src/main/java/com/plotsquared/core/plot/world/StandardPlotWorld.java +++ b/Core/src/main/java/com/plotsquared/core/plot/world/StandardPlotWorld.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot.world; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/queue/AreaBoundDelegateQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/AreaBoundDelegateQueueCoordinator.java index 7e01d782d..046b8cfa6 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/AreaBoundDelegateQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/AreaBoundDelegateQueueCoordinator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.queue; import com.plotsquared.core.plot.PlotArea; diff --git a/Core/src/main/java/com/plotsquared/core/queue/BasicQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/BasicQueueCoordinator.java index 1f0fa386a..aba4f7f08 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/BasicQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/BasicQueueCoordinator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.queue; import com.plotsquared.core.util.PatternUtil; diff --git a/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinator.java index cc6938145..65bd88eea 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.queue; import com.plotsquared.core.util.task.PlotSquaredTask; diff --git a/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinatorBuilder.java b/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinatorBuilder.java index 1f58224bf..44c2f9a45 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinatorBuilder.java +++ b/Core/src/main/java/com/plotsquared/core/queue/ChunkCoordinatorBuilder.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.queue; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/queue/ChunkQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/ChunkQueueCoordinator.java index 79553db46..873140e62 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/ChunkQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/ChunkQueueCoordinator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.queue; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/queue/DelegateQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/DelegateQueueCoordinator.java index 082a063af..826990294 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/DelegateQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/DelegateQueueCoordinator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.queue; import com.sk89q.jnbt.CompoundTag; diff --git a/Core/src/main/java/com/plotsquared/core/queue/GlobalBlockQueue.java b/Core/src/main/java/com/plotsquared/core/queue/GlobalBlockQueue.java index abd19ada6..a5fb537b5 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/GlobalBlockQueue.java +++ b/Core/src/main/java/com/plotsquared/core/queue/GlobalBlockQueue.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.queue; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/queue/LocalChunk.java b/Core/src/main/java/com/plotsquared/core/queue/LocalChunk.java index 06b0effe6..4a1d0afc9 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/LocalChunk.java +++ b/Core/src/main/java/com/plotsquared/core/queue/LocalChunk.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.queue; import com.plotsquared.core.util.ChunkUtil; diff --git a/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateQueueCoordinator.java index f430d2dc1..a517ed600 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/LocationOffsetDelegateQueueCoordinator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.queue; import com.sk89q.jnbt.CompoundTag; diff --git a/Core/src/main/java/com/plotsquared/core/queue/QueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/QueueCoordinator.java index 18dd54cff..e12ec0e38 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/QueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/QueueCoordinator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.queue; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/queue/QueueProvider.java b/Core/src/main/java/com/plotsquared/core/queue/QueueProvider.java index 43c3a4be2..0b27129dc 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/QueueProvider.java +++ b/Core/src/main/java/com/plotsquared/core/queue/QueueProvider.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.queue; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/queue/ScopedQueueCoordinator.java b/Core/src/main/java/com/plotsquared/core/queue/ScopedQueueCoordinator.java index a78351bbe..b9feb4ea1 100644 --- a/Core/src/main/java/com/plotsquared/core/queue/ScopedQueueCoordinator.java +++ b/Core/src/main/java/com/plotsquared/core/queue/ScopedQueueCoordinator.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.queue; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/services/plots/AutoService.java b/Core/src/main/java/com/plotsquared/core/services/plots/AutoService.java index 032ddbce8..3f8671664 100644 --- a/Core/src/main/java/com/plotsquared/core/services/plots/AutoService.java +++ b/Core/src/main/java/com/plotsquared/core/services/plots/AutoService.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.services.plots; import com.google.common.cache.Cache; diff --git a/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java b/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java index 81ec52604..fadc2821f 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java +++ b/Core/src/main/java/com/plotsquared/core/setup/CommonSetupSteps.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.setup; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/setup/PlotAreaBuilder.java b/Core/src/main/java/com/plotsquared/core/setup/PlotAreaBuilder.java index f5e49c1a2..baf1a8439 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/PlotAreaBuilder.java +++ b/Core/src/main/java/com/plotsquared/core/setup/PlotAreaBuilder.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.setup; diff --git a/Core/src/main/java/com/plotsquared/core/setup/SettingsNodeStep.java b/Core/src/main/java/com/plotsquared/core/setup/SettingsNodeStep.java index b55313428..0923f76c8 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/SettingsNodeStep.java +++ b/Core/src/main/java/com/plotsquared/core/setup/SettingsNodeStep.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.setup; import com.plotsquared.core.command.Command; diff --git a/Core/src/main/java/com/plotsquared/core/setup/SettingsNodesWrapper.java b/Core/src/main/java/com/plotsquared/core/setup/SettingsNodesWrapper.java index 7b608b78b..ec744cf91 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/SettingsNodesWrapper.java +++ b/Core/src/main/java/com/plotsquared/core/setup/SettingsNodesWrapper.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.setup; import com.plotsquared.core.configuration.ConfigurationNode; diff --git a/Core/src/main/java/com/plotsquared/core/setup/SetupProcess.java b/Core/src/main/java/com/plotsquared/core/setup/SetupProcess.java index af454aaf1..2e1c29502 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/SetupProcess.java +++ b/Core/src/main/java/com/plotsquared/core/setup/SetupProcess.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.setup; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/setup/SetupStep.java b/Core/src/main/java/com/plotsquared/core/setup/SetupStep.java index 839f60b64..011610a79 100644 --- a/Core/src/main/java/com/plotsquared/core/setup/SetupStep.java +++ b/Core/src/main/java/com/plotsquared/core/setup/SetupStep.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.setup; import com.plotsquared.core.command.Command; diff --git a/Core/src/main/java/com/plotsquared/core/synchronization/LockKey.java b/Core/src/main/java/com/plotsquared/core/synchronization/LockKey.java index 275625b48..aa192af3a 100644 --- a/Core/src/main/java/com/plotsquared/core/synchronization/LockKey.java +++ b/Core/src/main/java/com/plotsquared/core/synchronization/LockKey.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.synchronization; import com.google.common.base.Objects; diff --git a/Core/src/main/java/com/plotsquared/core/synchronization/LockRepository.java b/Core/src/main/java/com/plotsquared/core/synchronization/LockRepository.java index 79ca52b6c..fdf462af0 100644 --- a/Core/src/main/java/com/plotsquared/core/synchronization/LockRepository.java +++ b/Core/src/main/java/com/plotsquared/core/synchronization/LockRepository.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.synchronization; import com.google.common.util.concurrent.Striped; diff --git a/Core/src/main/java/com/plotsquared/core/util/BlockUtil.java b/Core/src/main/java/com/plotsquared/core/util/BlockUtil.java index b5b959c14..ff984bdee 100644 --- a/Core/src/main/java/com/plotsquared/core/util/BlockUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/BlockUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.sk89q.worldedit.WorldEdit; diff --git a/Core/src/main/java/com/plotsquared/core/util/ChunkManager.java b/Core/src/main/java/com/plotsquared/core/util/ChunkManager.java index 2625ec3d4..2c063ed90 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ChunkManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/ChunkManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/ChunkUtil.java b/Core/src/main/java/com/plotsquared/core/util/ChunkUtil.java index 57a1cb437..6b0f5c994 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ChunkUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/ChunkUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/util/EconHandler.java b/Core/src/main/java/com/plotsquared/core/util/EconHandler.java index 2be53ff44..0a30583dd 100644 --- a/Core/src/main/java/com/plotsquared/core/util/EconHandler.java +++ b/Core/src/main/java/com/plotsquared/core/util/EconHandler.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.player.ConsolePlayer; diff --git a/Core/src/main/java/com/plotsquared/core/util/EntityUtil.java b/Core/src/main/java/com/plotsquared/core/util/EntityUtil.java index 68e1dbe9d..bfcb8d20e 100644 --- a/Core/src/main/java/com/plotsquared/core/util/EntityUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/EntityUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java b/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java index c3e3228fe..e49caa512 100644 --- a/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java +++ b/Core/src/main/java/com/plotsquared/core/util/EventDispatcher.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.google.common.eventbus.EventBus; diff --git a/Core/src/main/java/com/plotsquared/core/util/Expression.java b/Core/src/main/java/com/plotsquared/core/util/Expression.java index f5fff88d5..39c3565b6 100644 --- a/Core/src/main/java/com/plotsquared/core/util/Expression.java +++ b/Core/src/main/java/com/plotsquared/core/util/Expression.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.command.DebugExec; diff --git a/Core/src/main/java/com/plotsquared/core/util/FileBytes.java b/Core/src/main/java/com/plotsquared/core/util/FileBytes.java index b8262dd78..61af8f118 100644 --- a/Core/src/main/java/com/plotsquared/core/util/FileBytes.java +++ b/Core/src/main/java/com/plotsquared/core/util/FileBytes.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; public class FileBytes { diff --git a/Core/src/main/java/com/plotsquared/core/util/FileUtils.java b/Core/src/main/java/com/plotsquared/core/util/FileUtils.java index 9630af6e3..288791e86 100644 --- a/Core/src/main/java/com/plotsquared/core/util/FileUtils.java +++ b/Core/src/main/java/com/plotsquared/core/util/FileUtils.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/util/HashUtil.java b/Core/src/main/java/com/plotsquared/core/util/HashUtil.java index 634835baa..2490b0787 100644 --- a/Core/src/main/java/com/plotsquared/core/util/HashUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/HashUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java b/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java index 21a3561c9..03c15976c 100644 --- a/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/InventoryUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/util/ItemUtil.java b/Core/src/main/java/com/plotsquared/core/util/ItemUtil.java index f25282a83..124720739 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ItemUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/ItemUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.sk89q.worldedit.world.item.ItemType; diff --git a/Core/src/main/java/com/plotsquared/core/util/LegacyConverter.java b/Core/src/main/java/com/plotsquared/core/util/LegacyConverter.java index f72ef92b5..7d1102e89 100644 --- a/Core/src/main/java/com/plotsquared/core/util/LegacyConverter.java +++ b/Core/src/main/java/com/plotsquared/core/util/LegacyConverter.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/MainUtil.java b/Core/src/main/java/com/plotsquared/core/util/MainUtil.java index 0a2ef6ae4..ba5710ec5 100644 --- a/Core/src/main/java/com/plotsquared/core/util/MainUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/MainUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import org.slf4j.Logger; diff --git a/Core/src/main/java/com/plotsquared/core/util/MathMan.java b/Core/src/main/java/com/plotsquared/core/util/MathMan.java index 5e06151eb..0e2cd90ac 100644 --- a/Core/src/main/java/com/plotsquared/core/util/MathMan.java +++ b/Core/src/main/java/com/plotsquared/core/util/MathMan.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; public class MathMan { diff --git a/Core/src/main/java/com/plotsquared/core/util/PatternUtil.java b/Core/src/main/java/com/plotsquared/core/util/PatternUtil.java index 991fe310f..296074ef0 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PatternUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/PatternUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/util/Permissions.java b/Core/src/main/java/com/plotsquared/core/util/Permissions.java index a6fc54624..dd897ffc4 100644 --- a/Core/src/main/java/com/plotsquared/core/util/Permissions.java +++ b/Core/src/main/java/com/plotsquared/core/util/Permissions.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.permissions.Permission; diff --git a/Core/src/main/java/com/plotsquared/core/util/PlatformWorldManager.java b/Core/src/main/java/com/plotsquared/core/util/PlatformWorldManager.java index 2602962d5..4a3b056c8 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PlatformWorldManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/PlatformWorldManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/util/PlayerManager.java b/Core/src/main/java/com/plotsquared/core/util/PlayerManager.java index 8205e6b63..b3a265f15 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PlayerManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/PlayerManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/PlotAreaConverter.java b/Core/src/main/java/com/plotsquared/core/util/PlotAreaConverter.java index da4cc335b..79927a16f 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PlotAreaConverter.java +++ b/Core/src/main/java/com/plotsquared/core/util/PlotAreaConverter.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.plot.PlotArea; diff --git a/Core/src/main/java/com/plotsquared/core/util/PremiumVerification.java b/Core/src/main/java/com/plotsquared/core/util/PremiumVerification.java index 4ffdf49c0..3ade04e4f 100644 --- a/Core/src/main/java/com/plotsquared/core/util/PremiumVerification.java +++ b/Core/src/main/java/com/plotsquared/core/util/PremiumVerification.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; public class PremiumVerification { diff --git a/Core/src/main/java/com/plotsquared/core/util/ReflectionUtils.java b/Core/src/main/java/com/plotsquared/core/util/ReflectionUtils.java index 5977e9a07..5a9eb0106 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ReflectionUtils.java +++ b/Core/src/main/java/com/plotsquared/core/util/ReflectionUtils.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import java.lang.reflect.Constructor; diff --git a/Core/src/main/java/com/plotsquared/core/util/RegExUtil.java b/Core/src/main/java/com/plotsquared/core/util/RegExUtil.java index 9769407bf..c03aed317 100644 --- a/Core/src/main/java/com/plotsquared/core/util/RegExUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/RegExUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import java.util.HashMap; diff --git a/Core/src/main/java/com/plotsquared/core/util/RegionManager.java b/Core/src/main/java/com/plotsquared/core/util/RegionManager.java index 9f601575d..20f5361b3 100644 --- a/Core/src/main/java/com/plotsquared/core/util/RegionManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/RegionManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.google.inject.Inject; diff --git a/Core/src/main/java/com/plotsquared/core/util/RegionUtil.java b/Core/src/main/java/com/plotsquared/core/util/RegionUtil.java index a1d2fe58e..6dc419f6b 100644 --- a/Core/src/main/java/com/plotsquared/core/util/RegionUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/RegionUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.location.Location; diff --git a/Core/src/main/java/com/plotsquared/core/util/RuntimeExceptionRunnableVal.java b/Core/src/main/java/com/plotsquared/core/util/RuntimeExceptionRunnableVal.java index 8a1f343a6..fa7f74e6a 100644 --- a/Core/src/main/java/com/plotsquared/core/util/RuntimeExceptionRunnableVal.java +++ b/Core/src/main/java/com/plotsquared/core/util/RuntimeExceptionRunnableVal.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.util.task.RunnableVal; diff --git a/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java b/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java index 09c6ad1bb..e40da7f5b 100644 --- a/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java +++ b/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/SetupUtils.java b/Core/src/main/java/com/plotsquared/core/util/SetupUtils.java index 7ddb20769..b1b92c7a7 100644 --- a/Core/src/main/java/com/plotsquared/core/util/SetupUtils.java +++ b/Core/src/main/java/com/plotsquared/core/util/SetupUtils.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.generator.GeneratorWrapper; diff --git a/Core/src/main/java/com/plotsquared/core/util/StringComparison.java b/Core/src/main/java/com/plotsquared/core/util/StringComparison.java index fce6f6371..d89183285 100644 --- a/Core/src/main/java/com/plotsquared/core/util/StringComparison.java +++ b/Core/src/main/java/com/plotsquared/core/util/StringComparison.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import java.util.ArrayList; diff --git a/Core/src/main/java/com/plotsquared/core/util/StringMan.java b/Core/src/main/java/com/plotsquared/core/util/StringMan.java index b7c544838..4342d2b24 100644 --- a/Core/src/main/java/com/plotsquared/core/util/StringMan.java +++ b/Core/src/main/java/com/plotsquared/core/util/StringMan.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/TabCompletions.java b/Core/src/main/java/com/plotsquared/core/util/TabCompletions.java index a00fc0c20..f45327bfa 100644 --- a/Core/src/main/java/com/plotsquared/core/util/TabCompletions.java +++ b/Core/src/main/java/com/plotsquared/core/util/TabCompletions.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.google.common.cache.Cache; diff --git a/Core/src/main/java/com/plotsquared/core/util/ThreadUtils.java b/Core/src/main/java/com/plotsquared/core/util/ThreadUtils.java index b69fe5a19..aef47a6f9 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ThreadUtils.java +++ b/Core/src/main/java/com/plotsquared/core/util/ThreadUtils.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/TimeUtil.java b/Core/src/main/java/com/plotsquared/core/util/TimeUtil.java index 384a716ce..532cbc827 100644 --- a/Core/src/main/java/com/plotsquared/core/util/TimeUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/TimeUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import javax.annotation.Nonnegative; diff --git a/Core/src/main/java/com/plotsquared/core/util/WEManager.java b/Core/src/main/java/com/plotsquared/core/util/WEManager.java index d39f8ea4d..1824b3f3e 100644 --- a/Core/src/main/java/com/plotsquared/core/util/WEManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/WEManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/WorldUtil.java b/Core/src/main/java/com/plotsquared/core/util/WorldUtil.java index 9ae2db184..78d08f8df 100644 --- a/Core/src/main/java/com/plotsquared/core/util/WorldUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/WorldUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategories.java b/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategories.java index 3c3218912..e2c834114 100644 --- a/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategories.java +++ b/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategories.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.entity; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategory.java b/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategory.java index 27516758f..fe8192237 100644 --- a/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategory.java +++ b/Core/src/main/java/com/plotsquared/core/util/entity/EntityCategory.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.entity; import com.plotsquared.core.util.WorldUtil; diff --git a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpMenu.java b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpMenu.java index 456869fd8..f802c436d 100644 --- a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpMenu.java +++ b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpMenu.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.helpmenu; import com.plotsquared.core.command.Command; diff --git a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpObject.java b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpObject.java index cfcaea0fd..5b82339de 100644 --- a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpObject.java +++ b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpObject.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.helpmenu; import com.plotsquared.core.command.Argument; diff --git a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpPage.java b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpPage.java index 5b02071d1..258f1b67e 100644 --- a/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpPage.java +++ b/Core/src/main/java/com/plotsquared/core/util/helpmenu/HelpPage.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.helpmenu; import com.plotsquared.core.command.CommandCategory; diff --git a/Core/src/main/java/com/plotsquared/core/util/net/AbstractDelegateOutputStream.java b/Core/src/main/java/com/plotsquared/core/util/net/AbstractDelegateOutputStream.java index c69a8ff53..0d425fa91 100644 --- a/Core/src/main/java/com/plotsquared/core/util/net/AbstractDelegateOutputStream.java +++ b/Core/src/main/java/com/plotsquared/core/util/net/AbstractDelegateOutputStream.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.net; import java.io.IOException; diff --git a/Core/src/main/java/com/plotsquared/core/util/net/HttpUtil.java b/Core/src/main/java/com/plotsquared/core/util/net/HttpUtil.java index 2dcfd912d..691dde805 100644 --- a/Core/src/main/java/com/plotsquared/core/util/net/HttpUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/net/HttpUtil.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.net; import com.plotsquared.core.configuration.Settings; diff --git a/Core/src/main/java/com/plotsquared/core/util/net/IncendoPaster.java b/Core/src/main/java/com/plotsquared/core/util/net/IncendoPaster.java index d777f23d8..f05af3187 100644 --- a/Core/src/main/java/com/plotsquared/core/util/net/IncendoPaster.java +++ b/Core/src/main/java/com/plotsquared/core/util/net/IncendoPaster.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.net; import com.google.common.base.Charsets; diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java index df9a42289..49071f9bc 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/Placeholder.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.placeholders; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java index 64ffa3d29..ab4ed8778 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlaceholderRegistry.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.placeholders; import com.google.common.base.Function; diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java index 2f3dc1aa0..acde17fac 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotFlagPlaceholder.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.placeholders; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java index f026b3d8f..c7dc029b8 100644 --- a/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java +++ b/Core/src/main/java/com/plotsquared/core/util/placeholders/PlotSpecificPlaceholder.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.placeholders; import com.plotsquared.core.player.PlotPlayer; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/AliasFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/AliasFilter.java index c2d9427f9..351f8c577 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/AliasFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/AliasFilter.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/AreaLimitedPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/AreaLimitedPlotProvider.java index 84818e205..7795a0ec6 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/AreaLimitedPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/AreaLimitedPlotProvider.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/ExpiredPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/ExpiredPlotProvider.java index cb9275310..b75d53ccf 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/ExpiredPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/ExpiredPlotProvider.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/FixedPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/FixedPlotProvider.java index 9da7e4d3e..e5bdc481a 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/FixedPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/FixedPlotProvider.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/GlobalPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/GlobalPlotProvider.java index 233d131ce..f77322c27 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/GlobalPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/GlobalPlotProvider.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/MemberFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/MemberFilter.java index 71ad86f84..e53cfdf71 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/MemberFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/MemberFilter.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/NullProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/NullProvider.java index 17e75fbfa..688418fd8 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/NullProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/NullProvider.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/OwnerFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/OwnerFilter.java index a84db5821..eb02ed6f0 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/OwnerFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/OwnerFilter.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PaginatedPlotResult.java b/Core/src/main/java/com/plotsquared/core/util/query/PaginatedPlotResult.java index 388c1b910..03d8fe9f7 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PaginatedPlotResult.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PaginatedPlotResult.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PlotFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/PlotFilter.java index d15fef089..ca42e7ac1 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PlotFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PlotFilter.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/PlotProvider.java index 82c944c76..739e6d636 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PlotProvider.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java b/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java index 51c20da92..c38d937c8 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PlotQuery.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; import com.google.common.base.Preconditions; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/PredicateFilter.java b/Core/src/main/java/com/plotsquared/core/util/query/PredicateFilter.java index 5f89b76d5..72c09a473 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/PredicateFilter.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/PredicateFilter.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/SearchPlotProvider.java b/Core/src/main/java/com/plotsquared/core/util/query/SearchPlotProvider.java index 72a159672..2699b0fac 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/SearchPlotProvider.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/SearchPlotProvider.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; import com.plotsquared.core.PlotSquared; diff --git a/Core/src/main/java/com/plotsquared/core/util/query/SortingStrategy.java b/Core/src/main/java/com/plotsquared/core/util/query/SortingStrategy.java index b30d6b8b9..c8fda22d9 100644 --- a/Core/src/main/java/com/plotsquared/core/util/query/SortingStrategy.java +++ b/Core/src/main/java/com/plotsquared/core/util/query/SortingStrategy.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.query; /** diff --git a/Core/src/main/java/com/plotsquared/core/util/task/AutoClaimFinishTask.java b/Core/src/main/java/com/plotsquared/core/util/task/AutoClaimFinishTask.java index 21a386b13..7dac88333 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/AutoClaimFinishTask.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/AutoClaimFinishTask.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.task; import com.plotsquared.core.configuration.caption.Templates; diff --git a/Core/src/main/java/com/plotsquared/core/util/task/ObjectTaskRunnable.java b/Core/src/main/java/com/plotsquared/core/util/task/ObjectTaskRunnable.java index 254fb47c4..d12972302 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/ObjectTaskRunnable.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/ObjectTaskRunnable.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.task; import java.util.Iterator; diff --git a/Core/src/main/java/com/plotsquared/core/util/task/PlotSquaredTask.java b/Core/src/main/java/com/plotsquared/core/util/task/PlotSquaredTask.java index 03571c2eb..f183f3206 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/PlotSquaredTask.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/PlotSquaredTask.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.task; /** diff --git a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal.java b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal.java index 1304c0545..ae2a69e34 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.task; public abstract class RunnableVal implements Runnable { diff --git a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal2.java b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal2.java index 2bb440065..7b68c565a 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal2.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal2.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.task; public abstract class RunnableVal2 implements Runnable { diff --git a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal3.java b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal3.java index 8450efdea..c625b06ea 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal3.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/RunnableVal3.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.task; public abstract class RunnableVal3 implements Runnable { diff --git a/Core/src/main/java/com/plotsquared/core/util/task/TaskManager.java b/Core/src/main/java/com/plotsquared/core/util/task/TaskManager.java index 6b53aa800..5eddd3755 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/TaskManager.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/TaskManager.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.task; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/util/task/TaskTime.java b/Core/src/main/java/com/plotsquared/core/util/task/TaskTime.java index a8cb82586..1c1c734ff 100644 --- a/Core/src/main/java/com/plotsquared/core/util/task/TaskTime.java +++ b/Core/src/main/java/com/plotsquared/core/util/task/TaskTime.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.util.task; import com.google.common.base.Objects; diff --git a/Core/src/main/java/com/plotsquared/core/uuid/CacheUUIDService.java b/Core/src/main/java/com/plotsquared/core/uuid/CacheUUIDService.java index 812228e5d..77bd77a21 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/CacheUUIDService.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/CacheUUIDService.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.uuid; import com.google.common.cache.Cache; diff --git a/Core/src/main/java/com/plotsquared/core/uuid/ServiceError.java b/Core/src/main/java/com/plotsquared/core/uuid/ServiceError.java index c015a394b..bc1ef9637 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/ServiceError.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/ServiceError.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.uuid; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/uuid/UUIDMapping.java b/Core/src/main/java/com/plotsquared/core/uuid/UUIDMapping.java index 8cae428d6..e033b7790 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/UUIDMapping.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/UUIDMapping.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.uuid; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/uuid/UUIDPipeline.java b/Core/src/main/java/com/plotsquared/core/uuid/UUIDPipeline.java index d9dbf3a87..2b00addf9 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/UUIDPipeline.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/UUIDPipeline.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.uuid; import com.google.common.collect.Lists; diff --git a/Core/src/main/java/com/plotsquared/core/uuid/UUIDService.java b/Core/src/main/java/com/plotsquared/core/uuid/UUIDService.java index 4de7798f9..6a7a1e884 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/UUIDService.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/UUIDService.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.uuid; import javax.annotation.Nonnull; diff --git a/Core/src/main/java/com/plotsquared/core/uuid/offline/OfflineModeUUIDService.java b/Core/src/main/java/com/plotsquared/core/uuid/offline/OfflineModeUUIDService.java index daae17dc0..ed52e4701 100644 --- a/Core/src/main/java/com/plotsquared/core/uuid/offline/OfflineModeUUIDService.java +++ b/Core/src/main/java/com/plotsquared/core/uuid/offline/OfflineModeUUIDService.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.uuid.offline; import com.google.common.base.Charsets; diff --git a/Core/src/test/java/com/plotsquared/core/database/AbstractDBTest.java b/Core/src/test/java/com/plotsquared/core/database/AbstractDBTest.java index d4998acbb..85ecd684c 100644 --- a/Core/src/test/java/com/plotsquared/core/database/AbstractDBTest.java +++ b/Core/src/test/java/com/plotsquared/core/database/AbstractDBTest.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.database; import com.plotsquared.core.plot.Plot; diff --git a/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java b/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java index 8ee936fbe..7d6e8f7a5 100644 --- a/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java +++ b/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.plotsquared.core.database.AbstractDBTest; diff --git a/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java b/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java index b07a251a9..26ddf72cc 100644 --- a/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java +++ b/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java @@ -23,7 +23,6 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ - package com.plotsquared.core.plot; import com.plotsquared.core.PlotVersion; From d97f68eec02b5cb76b62f2b0a2bbcb77e2fe0849 Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm Date: Thu, 8 Oct 2020 11:49:05 +0200 Subject: [PATCH 18/35] Address review issues --- build.gradle.kts | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index df23726f2..112f1500f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,3 +1,4 @@ + import com.github.jengelman.gradle.plugins.shadow.ShadowPlugin import net.minecrell.gradle.licenser.LicenseExtension import net.minecrell.gradle.licenser.Licenser @@ -76,10 +77,14 @@ subprojects { } tasks { - named("clean") { - doFirst { - delete("../target") - } + // This is to create the target dir under the root project with all jars. + val assembleTargetDir = create("assembleTargetDirectory") { + destinationDir = rootDir.resolve("target") + into(destinationDir) + from(withType()) + } + named("build") { + dependsOn(assembleTargetDir) } } } @@ -106,7 +111,15 @@ allprojects { withJavadocJar() } + val javadocDir = rootDir.resolve("docs").resolve("javadoc").resolve(project.name) tasks { + named("clean") { + doFirst { + delete(rootDir.resolve("target")) + delete(javadocDir) + } + } + compileJava { options.compilerArgs.addAll(arrayOf("-Xmaxerrs", "1000")) options.compilerArgs.add("-Xlint:all") @@ -124,6 +137,7 @@ allprojects { "implSpec:a:Implementation Requirements:", "implNote:a:Implementation Note:" ) + opt.destinationDirectory = javadocDir } shadowJar { From a637a8970bb29493b1a2248b7bb837b4c44001dc Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm Date: Thu, 8 Oct 2020 12:07:18 +0200 Subject: [PATCH 19/35] Add maven publishing --- build.gradle.kts | 76 +++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 65 insertions(+), 11 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 112f1500f..feaf7843b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,16 +1,12 @@ - import com.github.jengelman.gradle.plugins.shadow.ShadowPlugin import net.minecrell.gradle.licenser.LicenseExtension import net.minecrell.gradle.licenser.Licenser -import org.ajoberstar.grgit.Grgit -import org.ajoberstar.grgit.gradle.GrgitPlugin plugins { java `java-library` `maven-publish` id("com.github.johnrengelman.shadow") version "6.0.0" - id("org.ajoberstar.grgit") version "4.1.0" id("net.minecrell.licenser") version "0.4.1" eclipse @@ -61,7 +57,6 @@ subprojects { plugin() plugin() plugin() - plugin() plugin() plugin() @@ -111,6 +106,71 @@ allprojects { withJavadocJar() } + publishing { + publications { + create("maven") { + // This includes not only the original jar (i.e. not shadowJar), + // but also sources & javadocs due to the above java block. + from(components["java"]) + + pom { + licenses { + license { + name.set("GNU General Public License, Version 3.0") + url.set("https://www.gnu.org/licenses/gpl-3.0.html") + distribution.set("repo") + } + } + + developers { + developer { + id.set("Saulitired") + name.set("Alexander Söderberg") + } + + // TODO: Add developers + // I don't know the rest of your names, so this is up to + // you to fill in. + } + + scm { + url.set("https://github.com/IntellectualSites/PlotSquared") + connection.set("scm:https://IntellectualSites@github.com/IntellectualSites/PlotSquared.git") + developerConnection.set("scm:git://github.com/IntellectualSites/PlotSquared.git") + } + } + } + } + + repositories { + mavenLocal() // Install to own local repository + + // Accept String? to not err if they're not present. + // Check that they both exist before adding the repo, such that + // `credentials` doesn't err if one is null. + // It's not pretty, but this way it can compile. + val nexusUsername: String? by project + val nexusPassword: String? by project + if (nexusUsername != null && nexusPassword != null) { + maven { + val repositoryUrl = "https://mvn.intellectualsites.com/content/repositories/releases/" + val snapshotRepositoryUrl = "https://mvn.intellectualsites.com/content/repositories/snapshots/" + url = uri( + if (version.toString().endsWith("-SNAPSHOT")) snapshotRepositoryUrl + else repositoryUrl + ) + + credentials { + username = nexusUsername + password = nexusPassword + } + } + } else { + logger.warn("No nexus repository is added; nexusUsername or nexusPassword is null.") + } + } + } + val javadocDir = rootDir.resolve("docs").resolve("javadoc").resolve(project.name) tasks { named("clean") { @@ -151,9 +211,3 @@ allprojects { } } } - -extra { - val git: Grgit = Grgit.open { - dir = File("$rootDir/.git") - } -} From c198305b5e5ea1ed90db4b15e9ae913b1df6fbd1 Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm Date: Thu, 8 Oct 2020 12:29:54 +0200 Subject: [PATCH 20/35] Add missing relocations --- Bukkit/build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Bukkit/build.gradle.kts b/Bukkit/build.gradle.kts index 71ef9699a..d6e05868f 100644 --- a/Bukkit/build.gradle.kts +++ b/Bukkit/build.gradle.kts @@ -102,6 +102,7 @@ tasks.named("shadowJar") { include(dependency("com.intellectualsites:Pipeline")) relocate("net.kyori.adventure", "com.plotsquared.core.configuration.adventure") + relocate("net.kyori.examination", "com.plotsquared.core.configuration.examination") relocate("io.papermc.lib", "com.plotsquared.bukkit.paperlib") relocate("org.bstats", "com.plotsquared.metrics") relocate("com.sk89q.squirrelid", "com.plotsquared.squirrelid") @@ -110,6 +111,8 @@ tasks.named("shadowJar") { relocate("org.slf4j", "com.plotsquared.logging.slf4j") relocate("com.google.inject", "com.plotsquared.google") relocate("javax.inject", "com.plotsquared.core.inject.javax") + relocate("org.aopalliance", "com.plotsquared.core.aopalliance") + relocate("com.intellectualsites.services", "com.plotsquared.core.services") relocate("org.json", "com.plotsquared.json") { exclude("org/json/simple/**") } From e15b5a07fbfcc9fc16ee10696f69676c1ea4ce6a Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm Date: Thu, 8 Oct 2020 13:27:23 +0200 Subject: [PATCH 21/35] It runs! And it's small! --- Bukkit/build.gradle.kts | 64 ++++++------------- Core/build.gradle.kts | 40 ++++++++++-- .../core/util/SchematicHandler.java | 16 +++-- build.gradle.kts | 13 +--- 4 files changed, 65 insertions(+), 68 deletions(-) diff --git a/Bukkit/build.gradle.kts b/Bukkit/build.gradle.kts index d6e05868f..89aa514e6 100644 --- a/Bukkit/build.gradle.kts +++ b/Bukkit/build.gradle.kts @@ -49,6 +49,7 @@ dependencies { // Plugins compileOnly("com.sk89q.worldedit:worldedit-bukkit:7.2.0-SNAPSHOT") { exclude(group = "org.bukkit") + exclude(group = "org.spigotmc") } compileOnly("com.github.MilkBowl:VaultAPI:1.7") { exclude(group = "org.bukkit") @@ -60,61 +61,36 @@ dependencies { compileOnly("be.maximvdw:MVdWPlaceholderAPI:3.1.1") { isTransitive = false } // Other libraries - compileOnly("com.sk89q:squirrelid:1.0.0-SNAPSHOT") { isTransitive = false } + implementation("com.sk89q:squirrelid:1.0.0-SNAPSHOT") { isTransitive = false } // Adventure implementation("net.kyori:adventure-platform-bukkit:4.0.0-SNAPSHOT") } -tasks.named("processResources") { +tasks.processResources { filesMatching("plugin.yml") { expand("version" to project.version) } } -// TODO: Get this to be not ugly... tasks.named("shadowJar") { dependencies { - include(dependency(":PlotSquared-Core")) - include(dependency("io.papermc:paperlib")) - include(dependency("net.kyori:adventure-platform-bukkit")) - include(dependency("net.kyori:adventure-text-minimessage")) - include(dependency("net.kyori:adventure-text-serializer-bungeecord")) - include(dependency("net.kyori:adventure-text-serializer-legacy")) - include(dependency("net.kyori:adventure-text-serializer-gson")) - include(dependency("net.kyori:adventure-api")) - include(dependency("net.kyori:adventure-platform-api")) - include(dependency("net.kyori:adventure-platform-common")) - include(dependency("net.kyori:adventure-platform-viaversion")) - include(dependency("net.kyori:adventure-nbt")) - include(dependency("net.kyori:examination-api")) - include(dependency("net.kyori:examination-string")) - include(dependency("org.bstats:bstats-bukkit")) - include(dependency("org.khelekore:prtree")) - include(dependency("com.sk89q:squirrelid")) - include(dependency("com.google.inject:guice")) - include(dependency("com.google.inject.extensions:guice-assistedinject")) - include(dependency("javax.annotation:javax-annotation-api")) - include(dependency("org.apache.logging.log4j:log4j-slf4j-impl")) - include(dependency("org.slf4j:slf4j-api")) - include(dependency("javax.inject:javax.inject")) - include(dependency("aopalliance:aopalliance")) - include(dependency("com.intellectualsites:Pipeline")) - - relocate("net.kyori.adventure", "com.plotsquared.core.configuration.adventure") - relocate("net.kyori.examination", "com.plotsquared.core.configuration.examination") - relocate("io.papermc.lib", "com.plotsquared.bukkit.paperlib") - relocate("org.bstats", "com.plotsquared.metrics") - relocate("com.sk89q.squirrelid", "com.plotsquared.squirrelid") - relocate("org.khelekore.prtree", "com.plotsquared.prtree") - relocate("org.apache.logging.slf4j", "com.plotsquared.logging.apache") - relocate("org.slf4j", "com.plotsquared.logging.slf4j") - relocate("com.google.inject", "com.plotsquared.google") - relocate("javax.inject", "com.plotsquared.core.inject.javax") - relocate("org.aopalliance", "com.plotsquared.core.aopalliance") - relocate("com.intellectualsites.services", "com.plotsquared.core.services") - relocate("org.json", "com.plotsquared.json") { - exclude("org/json/simple/**") - } + exclude(dependency("org.checkerframework:")) } + + relocate("net.kyori.adventure", "com.plotsquared.core.configuration.adventure") + relocate("net.kyori.examination", "com.plotsquared.core.configuration.examination") + relocate("io.papermc.lib", "com.plotsquared.bukkit.paperlib") + relocate("org.bstats", "com.plotsquared.metrics") + relocate("com.sk89q.squirrelid", "com.plotsquared.squirrelid") + relocate("org.khelekore.prtree", "com.plotsquared.prtree") + relocate("org.apache.logging.slf4j", "com.plotsquared.logging.apache") + relocate("org.slf4j", "com.plotsquared.logging.slf4j") + relocate("com.google.inject", "com.plotsquared.google") + relocate("javax.inject", "com.plotsquared.core.inject.javax") + relocate("org.aopalliance", "com.plotsquared.core.aopalliance") + relocate("com.intellectualsites.services", "com.plotsquared.core.services") + + // Get rid of all the libs which are 100% unused. + minimize() } diff --git a/Core/build.gradle.kts b/Core/build.gradle.kts index 378ddd0c5..db0220193 100644 --- a/Core/build.gradle.kts +++ b/Core/build.gradle.kts @@ -1,11 +1,13 @@ +import java.time.format.DateTimeFormatter + dependencies { // Expected everywhere. - api("org.json:json:20200518") - api("javax.annotation:javax.annotation-api:1.3.2") + compileOnlyApi("javax.annotation:javax.annotation-api:1.3.2") // Minecraft expectations compileOnlyApi("com.google.guava:guava:21.0") // Minecraft uses v21.0 compileOnlyApi("com.google.code.gson:gson:2.8.0") // Minecraft uses v2.8.0 + api("org.slf4j:slf4j-api:1.7.25") // Minecraft uses v1.7.25 // Platform expectations compileOnlyApi("org.yaml:snakeyaml:1.26") // Some platforms provide this @@ -15,16 +17,40 @@ dependencies { api("net.kyori:adventure-text-minimessage:4.0.0-SNAPSHOT") // Guice - api("com.google.inject:guice:4.2.3") - api("com.google.inject.extensions:guice-assistedinject:4.2.3") + api("com.google.inject:guice:4.2.3") { + exclude(group = "com.google.guava") + } + api("com.google.inject.extensions:guice-assistedinject:4.2.3") { + exclude("com.google.inject", "guice") + } compileOnlyApi("com.google.code.findbugs:annotations:3.0.1") compileOnlyApi("javax.inject:javax.inject:1") - // Logging - api("org.apache.logging.log4j:log4j-slf4j-impl:2.8.1") + // Plugins + compileOnlyApi("com.sk89q.worldedit:worldedit-core:7.2.0-SNAPSHOT") { + exclude(group = "bukkit-classloader-check") + exclude(group = "mockito-core") + exclude(group = "dummypermscompat") + } + testImplementation("com.sk89q.worldedit:worldedit-core:7.2.0-SNAPSHOT") // Other libraries + runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.8.1") { + exclude(group = "org.slf4j") + } api("org.khelekore:prtree:1.7.0-SNAPSHOT") api("aopalliance:aopalliance:1.0") - api("com.intellectualsites:Pipeline:1.4.0-SNAPSHOT") + api("com.intellectualsites:Pipeline:1.4.0-SNAPSHOT") { + exclude(group = "com.google.guava") + } +} + +tasks.processResources { + filesMatching("plugin.properties") { + expand( + "version" to project.version.toString(), + "commit" to rootProject.grgit.head().abbreviatedId, + "date" to rootProject.grgit.head().dateTime.format(DateTimeFormatter.ofPattern("yy.MM.dd")) + ) + } } diff --git a/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java b/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java index e40da7f5b..13e1dfa94 100644 --- a/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java +++ b/Core/src/main/java/com/plotsquared/core/util/SchematicHandler.java @@ -25,6 +25,9 @@ */ package com.plotsquared.core.util; +import com.google.gson.Gson; +import com.google.gson.JsonArray; +import com.google.gson.JsonParseException; import com.plotsquared.core.PlotSquared; import com.plotsquared.core.configuration.Settings; import com.plotsquared.core.generator.ClassicPlotWorld; @@ -60,8 +63,6 @@ import com.sk89q.worldedit.math.BlockVector3; import com.sk89q.worldedit.regions.CuboidRegion; import com.sk89q.worldedit.world.biome.BiomeType; import com.sk89q.worldedit.world.block.BaseBlock; -import org.json.JSONArray; -import org.json.JSONException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -106,6 +107,7 @@ import java.util.zip.GZIPOutputStream; public abstract class SchematicHandler { private static final Logger logger = LoggerFactory.getLogger("P2/" + SchematicHandler.class.getSimpleName()); + private static final Gson GSON = new Gson(); public static SchematicHandler manager; private final WorldUtil worldUtil; private boolean exportAll = false; @@ -453,7 +455,7 @@ public abstract class SchematicHandler { } public List getSaves(UUID uuid) { - String rawJSON = ""; + String rawJSON; try { String website = Settings.Web.URL + "list.php?" + uuid.toString(); URL url = new URL(website); @@ -462,14 +464,14 @@ public abstract class SchematicHandler { try (BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()))) { rawJSON = reader.lines().collect(Collectors.joining()); } - JSONArray array = new JSONArray(rawJSON); + JsonArray array = GSON.fromJson(rawJSON, JsonArray.class); List schematics = new ArrayList<>(); - for (int i = 0; i < array.length(); i++) { - String schematic = array.getString(i); + for (int i = 0; i < array.size(); i++) { + String schematic = array.get(i).getAsString(); schematics.add(schematic); } return schematics; - } catch (JSONException | IOException e) { + } catch (JsonParseException | IOException e) { e.printStackTrace(); } return null; diff --git a/build.gradle.kts b/build.gradle.kts index feaf7843b..5f7224ad9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,6 +8,7 @@ plugins { `maven-publish` id("com.github.johnrengelman.shadow") version "6.0.0" id("net.minecrell.licenser") version "0.4.1" + id("org.ajoberstar.grgit") version "4.1.0" eclipse idea @@ -63,14 +64,6 @@ subprojects { plugin() } - dependencies { - api("com.sk89q.worldedit:worldedit-core:7.2.0-SNAPSHOT") { - exclude(group = "bukkit-classloader-check") - exclude(group = "mockito-core") - exclude(group = "dummypermscompat") - } - } - tasks { // This is to create the target dir under the root project with all jars. val assembleTargetDir = create("assembleTargetDirectory") { @@ -175,8 +168,8 @@ allprojects { tasks { named("clean") { doFirst { - delete(rootDir.resolve("target")) - delete(javadocDir) + rootDir.resolve("target").deleteRecursively() + javadocDir.deleteRecursively() } } From 54a8482a8849cef331d5c4ad4bda9a2ff6c3bf24 Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm Date: Thu, 8 Oct 2020 13:28:58 +0200 Subject: [PATCH 22/35] Minecraft does not always provide slf4j --- Core/build.gradle.kts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Core/build.gradle.kts b/Core/build.gradle.kts index db0220193..b886a9407 100644 --- a/Core/build.gradle.kts +++ b/Core/build.gradle.kts @@ -7,7 +7,6 @@ dependencies { // Minecraft expectations compileOnlyApi("com.google.guava:guava:21.0") // Minecraft uses v21.0 compileOnlyApi("com.google.code.gson:gson:2.8.0") // Minecraft uses v2.8.0 - api("org.slf4j:slf4j-api:1.7.25") // Minecraft uses v1.7.25 // Platform expectations compileOnlyApi("org.yaml:snakeyaml:1.26") // Some platforms provide this @@ -34,10 +33,13 @@ dependencies { } testImplementation("com.sk89q.worldedit:worldedit-core:7.2.0-SNAPSHOT") - // Other libraries + // Logging + api("org.slf4j:slf4j-api:1.7.25") runtimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.8.1") { exclude(group = "org.slf4j") } + + // Other libraries api("org.khelekore:prtree:1.7.0-SNAPSHOT") api("aopalliance:aopalliance:1.0") api("com.intellectualsites:Pipeline:1.4.0-SNAPSHOT") { From cd605f4996daa0f2f286e824f004cefd6d2603fc Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm Date: Thu, 8 Oct 2020 13:29:47 +0200 Subject: [PATCH 23/35] Relocate log4j, move slf4j declaration --- Bukkit/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bukkit/build.gradle.kts b/Bukkit/build.gradle.kts index 89aa514e6..abf486cf5 100644 --- a/Bukkit/build.gradle.kts +++ b/Bukkit/build.gradle.kts @@ -84,7 +84,7 @@ tasks.named("shadowJar") { relocate("org.bstats", "com.plotsquared.metrics") relocate("com.sk89q.squirrelid", "com.plotsquared.squirrelid") relocate("org.khelekore.prtree", "com.plotsquared.prtree") - relocate("org.apache.logging.slf4j", "com.plotsquared.logging.apache") + relocate("org.apache.logging.log4j", "com.plotsquared.logging.apache.log4j") relocate("org.slf4j", "com.plotsquared.logging.slf4j") relocate("com.google.inject", "com.plotsquared.google") relocate("javax.inject", "com.plotsquared.core.inject.javax") From 2eee1ef2031646edc2d8f4203d75c5abe7a2a709 Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm Date: Thu, 8 Oct 2020 14:29:24 +0200 Subject: [PATCH 24/35] Fix log4j --- Bukkit/build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Bukkit/build.gradle.kts b/Bukkit/build.gradle.kts index abf486cf5..59ccb1f70 100644 --- a/Bukkit/build.gradle.kts +++ b/Bukkit/build.gradle.kts @@ -85,6 +85,7 @@ tasks.named("shadowJar") { relocate("com.sk89q.squirrelid", "com.plotsquared.squirrelid") relocate("org.khelekore.prtree", "com.plotsquared.prtree") relocate("org.apache.logging.log4j", "com.plotsquared.logging.apache.log4j") + relocate("org.apache.logging.slf4j", "com.plotsquared.logging.apache.slf4j") relocate("org.slf4j", "com.plotsquared.logging.slf4j") relocate("com.google.inject", "com.plotsquared.google") relocate("javax.inject", "com.plotsquared.core.inject.javax") @@ -93,4 +94,6 @@ tasks.named("shadowJar") { // Get rid of all the libs which are 100% unused. minimize() + + mergeServiceFiles() } From 841eef6a52542177c38b0927fbb8093a6bd562b3 Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Thu, 8 Oct 2020 18:57:11 +0200 Subject: [PATCH 25/35] Fix done message on backup and add done message to grant --- Core/src/main/java/com/plotsquared/core/command/Backup.java | 2 +- Core/src/main/java/com/plotsquared/core/command/Grant.java | 4 ++++ Core/src/main/resources/lang/messages_en.json | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Core/src/main/java/com/plotsquared/core/command/Backup.java b/Core/src/main/java/com/plotsquared/core/command/Backup.java index 5ba71cc03..bf4f47efe 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Backup.java +++ b/Core/src/main/java/com/plotsquared/core/command/Backup.java @@ -322,7 +322,7 @@ public final class Backup extends Command { Template.of("reason", error.getMessage()) ); } else { - player.sendMessage(TranslatableCaption.of("backup_load_success")); + player.sendMessage(TranslatableCaption.of("backups.backup_load_success")); } })); } diff --git a/Core/src/main/java/com/plotsquared/core/command/Grant.java b/Core/src/main/java/com/plotsquared/core/command/Grant.java index a40c45ca8..a80ed4a49 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Grant.java +++ b/Core/src/main/java/com/plotsquared/core/command/Grant.java @@ -124,6 +124,10 @@ public class Grant extends Command { String key = "grantedPlots"; byte[] rawData = Ints.toByteArray(amount); DBFunc.addPersistentMeta(uuid.getUuid(), key, rawData, replace); + player.sendMessage( + TranslatableCaption.of("grants.added"), + Template.of("grants", String.valueOf(amount)) + ); } } }); diff --git a/Core/src/main/resources/lang/messages_en.json b/Core/src/main/resources/lang/messages_en.json index 6229c9752..6c26eb616 100644 --- a/Core/src/main/resources/lang/messages_en.json +++ b/Core/src/main/resources/lang/messages_en.json @@ -471,6 +471,7 @@ "category.command_category_administration": "Admin", "grants.granted_plots": "Result: grants left.", + "grants.added": " grant(s) have been added.", "events.event_denied": " Cancelled by external plugin.", From e28fb4901504141f92caeb2ef1a69172a59bc7b8 Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Thu, 8 Oct 2020 19:27:05 +0200 Subject: [PATCH 26/35] Add override permission for `/plot music` --- Bukkit/src/main/resources/plugin.yml | 2 ++ .../src/main/java/com/plotsquared/core/command/Music.java | 8 ++++++-- .../java/com/plotsquared/core/permissions/Permission.java | 1 + 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Bukkit/src/main/resources/plugin.yml b/Bukkit/src/main/resources/plugin.yml index 9db0f1518..91579acdb 100644 --- a/Bukkit/src/main/resources/plugin.yml +++ b/Bukkit/src/main/resources/plugin.yml @@ -214,6 +214,8 @@ permissions: default: false plots.admin.caps.other: default: false + plots.admin.music.other: + default: false plots.admin.destroy.unowned: default: false plots.admin.destroy.groundlevel: diff --git a/Core/src/main/java/com/plotsquared/core/command/Music.java b/Core/src/main/java/com/plotsquared/core/command/Music.java index ffab80dcf..88dd7335f 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Music.java +++ b/Core/src/main/java/com/plotsquared/core/command/Music.java @@ -38,6 +38,7 @@ import com.plotsquared.core.plot.PlotItemStack; import com.plotsquared.core.plot.flag.PlotFlag; import com.plotsquared.core.plot.flag.implementations.MusicFlag; import com.plotsquared.core.util.InventoryUtil; +import com.plotsquared.core.util.Permissions; import com.sk89q.worldedit.world.item.ItemTypes; import net.kyori.adventure.text.minimessage.Template; @@ -71,8 +72,11 @@ public class Music extends SubCommand { player.sendMessage(TranslatableCaption.of("errors.not_in_plot")); return false; } - if (!plot.isAdded(player.getUUID())) { - player.sendMessage(TranslatableCaption.of("permission.no_plot_perms")); + if (!plot.isAdded(player.getUUID()) &&!Permissions + .hasPermission(player, "plots.admin.music.other")) { + player.sendMessage( + TranslatableCaption.of("permission.no_permission"), + Template.of("node", "plots.admin.music.other")); return true; } PlotInventory inv = new PlotInventory(this.inventoryUtil, player, 2, "Plot Jukebox") { diff --git a/Core/src/main/java/com/plotsquared/core/permissions/Permission.java b/Core/src/main/java/com/plotsquared/core/permissions/Permission.java index 27aa9fce8..dc8604c60 100644 --- a/Core/src/main/java/com/plotsquared/core/permissions/Permission.java +++ b/Core/src/main/java/com/plotsquared/core/permissions/Permission.java @@ -53,6 +53,7 @@ public enum Permission { PERMISSION_MERGE_OTHER("plots.merge.other"), PERMISSION_MERGE_KEEP_ROAD("plots.merge.keeproad"), PERMISSION_ADMIN_CAPS_OTHER("plots.admin.caps.other"), + PERMISSION_ADMIN_MUSIC_OTHER("plots.admin.music.other"), PERMISSION_ADMIN_DESTROY_UNOWNED("plots.admin.destroy.unowned"), PERMISSION_ADMIN_DESTROY_GROUNDLEVEL("plots.admin.destroy.groundlevel"), PERMISSION_ADMIN_DESTROY_OTHER("plots.admin.destroy.other"), From 5841817fb56562710ed1965b3d3035490c765dd4 Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Thu, 8 Oct 2020 19:29:09 +0200 Subject: [PATCH 27/35] Missing space --- Core/src/main/java/com/plotsquared/core/command/Music.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/src/main/java/com/plotsquared/core/command/Music.java b/Core/src/main/java/com/plotsquared/core/command/Music.java index 88dd7335f..ad10fdde0 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Music.java +++ b/Core/src/main/java/com/plotsquared/core/command/Music.java @@ -72,7 +72,7 @@ public class Music extends SubCommand { player.sendMessage(TranslatableCaption.of("errors.not_in_plot")); return false; } - if (!plot.isAdded(player.getUUID()) &&!Permissions + if (!plot.isAdded(player.getUUID()) && !Permissions .hasPermission(player, "plots.admin.music.other")) { player.sendMessage( TranslatableCaption.of("permission.no_permission"), From e46b38b3019305058690bb4a1a16e31b6a22e0ff Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Thu, 8 Oct 2020 19:51:42 +0200 Subject: [PATCH 28/35] Fix plot set values --- Core/src/main/java/com/plotsquared/core/command/Set.java | 2 +- Core/src/main/resources/lang/messages_en.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Core/src/main/java/com/plotsquared/core/command/Set.java b/Core/src/main/java/com/plotsquared/core/command/Set.java index 11015b70d..725d07667 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Set.java +++ b/Core/src/main/java/com/plotsquared/core/command/Set.java @@ -180,7 +180,7 @@ public class Set extends SubCommand { if (plot != null) { newValues.addAll(Arrays.asList(plot.getManager().getPlotComponents(plot.getId()))); } - player.sendMessage(StaticCaption.of(TranslatableCaption.of("commandconfig.subcommand_set_options_header").getComponent(player) + StringMan + player.sendMessage(StaticCaption.of(TranslatableCaption.of("commandconfig.subcommand_set_options_header_only").getComponent(player) + StringMan .join(newValues, TranslatableCaption.of("blocklist.block_list_separator").getComponent(player)))); return false; } diff --git a/Core/src/main/resources/lang/messages_en.json b/Core/src/main/resources/lang/messages_en.json index 6c26eb616..19d38d09f 100644 --- a/Core/src/main/resources/lang/messages_en.json +++ b/Core/src/main/resources/lang/messages_en.json @@ -220,6 +220,7 @@ "commandconfig.not_valid_subcommand": "That is not a valid subcommand.", "commandconfig.did_you_mean": "Did you mean: ", "commandconfig.subcommand_set_options_header": "Possible Values: ", + "commandconfig.subcommand_set_options_header_only": "Possible Values: ", "commandconfig.command_syntax": "Usage: ", "commandconfig.command_syntax_extended": "Usage: ", "commandconfig.flag_tutorial_usage": "Have an admin set the flag: ", From 6f0512c18c0c428880c3b00bb2ff4bb0206cb51f Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Thu, 8 Oct 2020 20:16:29 +0200 Subject: [PATCH 29/35] Fix plot set tab completions --- .../com/plotsquared/core/command/Set.java | 54 ++++++++++++++++--- 1 file changed, 46 insertions(+), 8 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/command/Set.java b/Core/src/main/java/com/plotsquared/core/command/Set.java index 725d07667..3090ed3c5 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Set.java +++ b/Core/src/main/java/com/plotsquared/core/command/Set.java @@ -45,6 +45,8 @@ import com.sk89q.worldedit.function.pattern.Pattern; import com.sk89q.worldedit.world.block.BlockCategory; import com.sk89q.worldedit.world.block.BlockType; import com.sk89q.worldedit.world.block.BlockTypes; +import java.util.Collections; +import java.util.LinkedList; import net.kyori.adventure.text.minimessage.Template; import javax.annotation.Nonnull; @@ -213,15 +215,51 @@ public class Set extends SubCommand { } @Override - public Collection tab(final PlotPlayer player, final String[] args, - final boolean space) { + public Collection tab(final PlotPlayer player, String[] args, boolean space) { if (args.length == 1) { - return Stream - .of("biome", "alias", "home", "main", "floor", "air", "all", "border", "wall", - "outline", "middle") - .filter(value -> value.startsWith(args[0].toLowerCase(Locale.ENGLISH))) - .map(value -> new Command(null, false, value, "", RequiredType.NONE, null) { - }).collect(Collectors.toList()); + final List completions = new LinkedList<>(); + + if (Permissions.hasPermission(player, "plots.set.biome")) { + completions.add("biome"); + } + if (Permissions.hasPermission(player, "plots.set.alias")) { + completions.add("alias"); + } + if (Permissions.hasPermission(player, "plots.set.home")) { + completions.add("home"); + } + if (Permissions.hasPermission(player, "plots.set.main")) { + completions.add("main"); + } + if (Permissions.hasPermission(player, "plots.set.floor")) { + completions.add("floor"); + } + if (Permissions.hasPermission(player, "plots.set.air")) { + completions.add("air"); + } + if (Permissions.hasPermission(player, "plots.set.all")) { + completions.add("all"); + } + if (Permissions.hasPermission(player, "plots.set.border")) { + completions.add("border"); + } + if (Permissions.hasPermission(player, "plots.set.wall")) { + completions.add("wall"); + } + if (Permissions.hasPermission(player, "plots.set.outline")) { + completions.add("outline"); + } + if (Permissions.hasPermission(player, "plots.set.middle")) { + completions.add("middle"); + } + final List commands = completions.stream().filter(completion -> completion.toLowerCase().startsWith(args[0].toLowerCase())) + .map(completion -> new Command(null, true, completion, "", RequiredType.NONE, CommandCategory.APPEARANCE) { + }).collect(Collectors.toCollection(LinkedList::new)); + + if (Permissions.hasPermission(player, "plots.set") && args[0].length() > 0) { + commands.addAll(TabCompletions.completePlayers(args[0], Collections.emptyList())); + } + return commands; } else if (args.length > 1) { // Additional checks Plot plot = player.getCurrentPlot(); From 02698b3a0e7fb76e1f05d03dbf59947ecd00de56 Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Thu, 8 Oct 2020 20:42:17 +0200 Subject: [PATCH 30/35] Fix plot grant tab completion --- .../com/plotsquared/core/command/Grant.java | 30 ++++++++++++++----- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/command/Grant.java b/Core/src/main/java/com/plotsquared/core/command/Grant.java index a80ed4a49..aaea5a68a 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Grant.java +++ b/Core/src/main/java/com/plotsquared/core/command/Grant.java @@ -35,19 +35,21 @@ import com.plotsquared.core.player.PlayerMetaDataKeys; import com.plotsquared.core.player.PlotPlayer; import com.plotsquared.core.util.Permissions; import com.plotsquared.core.util.PlayerManager; +import com.plotsquared.core.util.TabCompletions; import com.plotsquared.core.util.task.RunnableVal; import com.plotsquared.core.util.task.RunnableVal2; import com.plotsquared.core.util.task.RunnableVal3; +import java.util.Collection; +import java.util.Collections; +import java.util.LinkedList; +import java.util.List; import net.kyori.adventure.text.minimessage.Template; import com.plotsquared.core.uuid.UUIDMapping; -import java.util.Collection; -import java.util.Locale; import java.util.Map; import java.util.concurrent.CompletableFuture; import java.util.concurrent.TimeoutException; import java.util.stream.Collectors; -import java.util.stream.Stream; @CommandDeclaration(command = "grant", category = CommandCategory.CLAIMING, @@ -139,10 +141,22 @@ public class Grant extends Command { sendUsage(player); return CompletableFuture.completedFuture(true); } - @Override public Collection tab(final PlotPlayer player, String[] args, boolean space) { - return Stream.of("check", "add") - .filter(value -> value.startsWith(args[0].toLowerCase(Locale.ENGLISH))) - .map(value -> new Command(null, false, value, "plots.grant", RequiredType.NONE, null) { - }).collect(Collectors.toList()); + @Override public Collection tab(final PlotPlayer player, final String[] args, final boolean space) { + if (args.length == 1) { + final List completions = new LinkedList<>(); + if (Permissions.hasPermission(player, "plots.grant.add")) { + completions.add("add"); + } + if (Permissions.hasPermission(player, "plots.grant.check")) { + completions.add("check"); + } + final List commands = completions.stream().filter(completion -> completion.toLowerCase().startsWith(args[0].toLowerCase())) + .map(completion -> new Command(null, true, completion, "", RequiredType.NONE, CommandCategory.ADMINISTRATION) { + }).collect(Collectors.toCollection(LinkedList::new)); + if (Permissions.hasPermission(player, "plots.grant") && args[0].length() > 0) { + commands.addAll(TabCompletions.completePlayers(args[0], Collections.emptyList())); + } + return commands; + } return TabCompletions.completePlayers(String.join(",", args).trim(), Collections.emptyList()); } } From 6b37d678dfdd06ae04bac5dd9ef8efb7470ae5ff Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Thu, 8 Oct 2020 20:47:43 +0200 Subject: [PATCH 31/35] Fix plot template tab completion --- .../plotsquared/core/command/Template.java | 27 +++++++++++++++---- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/Core/src/main/java/com/plotsquared/core/command/Template.java b/Core/src/main/java/com/plotsquared/core/command/Template.java index a384c74ac..71e81ffd8 100644 --- a/Core/src/main/java/com/plotsquared/core/command/Template.java +++ b/Core/src/main/java/com/plotsquared/core/command/Template.java @@ -45,10 +45,15 @@ import com.plotsquared.core.setup.PlotAreaBuilder; import com.plotsquared.core.setup.SettingsNodesWrapper; import com.plotsquared.core.util.FileBytes; import com.plotsquared.core.util.FileUtils; +import com.plotsquared.core.util.Permissions; import com.plotsquared.core.util.SetupUtils; +import com.plotsquared.core.util.TabCompletions; import com.plotsquared.core.util.WorldUtil; import com.plotsquared.core.util.task.TaskManager; +import java.util.Collections; +import java.util.LinkedList; +import java.util.List; import javax.annotation.Nonnull; import java.io.File; import java.io.FileInputStream; @@ -266,10 +271,22 @@ public class Template extends SubCommand { } return false; } - @Override public Collection tab(final PlotPlayer player, String[] args, boolean space) { - return Stream.of("import", "export") - .filter(value -> value.startsWith(args[0].toLowerCase(Locale.ENGLISH))) - .map(value -> new Command(null, false, value, "plots.admin", RequiredType.NONE, null) { - }).collect(Collectors.toList()); + @Override public Collection tab(final PlotPlayer player, final String[] args, final boolean space) { + if (args.length == 1) { + final List completions = new LinkedList<>(); + if (Permissions.hasPermission(player, "plots.template.export")) { + completions.add("export"); + } + if (Permissions.hasPermission(player, "plots.template.import")) { + completions.add("import"); + } + final List commands = completions.stream().filter(completion -> completion.toLowerCase().startsWith(args[0].toLowerCase())) + .map(completion -> new Command(null, true, completion, "", RequiredType.NONE, CommandCategory.ADMINISTRATION) { + }).collect(Collectors.toCollection(LinkedList::new)); + if (Permissions.hasPermission(player, "plots.template") && args[0].length() > 0) { + commands.addAll(TabCompletions.completePlayers(args[0], Collections.emptyList())); + } + return commands; + } return TabCompletions.completePlayers(String.join(",", args).trim(), Collections.emptyList()); } } From 0d89125a8e5f4fe269b7918853a4011ced503e02 Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Thu, 8 Oct 2020 20:52:02 +0200 Subject: [PATCH 32/35] Replace sys out with logger factory --- .../main/java/com/plotsquared/bukkit/BukkitPlatform.java | 6 +++--- Core/src/main/java/com/plotsquared/core/PlotSquared.java | 1 - .../src/test/java/com/plotsquared/core/plot/FlagTest.java | 8 ++++++-- .../java/com/plotsquared/core/plot/PlotVersionTest.java | 6 +++++- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java index bdad258d7..720602f72 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java @@ -236,9 +236,9 @@ public final class BukkitPlatform extends JavaPlugin implements Listener, PlotPl final PlotSquared plotSquared = new PlotSquared(this, "Bukkit"); if (PlotSquared.platform().getServerVersion()[1] < 13) { - System.out.println("You can't use this version of PlotSquared on a server less than Minecraft 1.13.2."); - System.out.println("Please check the download page for the link to the legacy versions."); - System.out.println("The server will now be shutdown to prevent any corruption."); + logger.info("You can't use this version of PlotSquared on a server less than Minecraft 1.13.2."); + logger.info("Please check the download page for the link to the legacy versions."); + logger.info("The server will now be shutdown to prevent any corruption."); Bukkit.shutdown(); return; } diff --git a/Core/src/main/java/com/plotsquared/core/PlotSquared.java b/Core/src/main/java/com/plotsquared/core/PlotSquared.java index 3cc968a1e..ebc6ccad2 100644 --- a/Core/src/main/java/com/plotsquared/core/PlotSquared.java +++ b/Core/src/main/java/com/plotsquared/core/PlotSquared.java @@ -1300,7 +1300,6 @@ public class PlotSquared { String commitString = br.readLine(); String dateString = br.readLine(); this.version = PlotVersion.tryParse(versionString, commitString, dateString); - System.out.println("Version is " + this.version); } } catch (IOException throwable) { throwable.printStackTrace(); diff --git a/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java b/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java index 7d6e8f7a5..1ef3e116f 100644 --- a/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java +++ b/Core/src/test/java/com/plotsquared/core/plot/FlagTest.java @@ -32,11 +32,15 @@ import com.plotsquared.core.plot.flag.implementations.UseFlag; import com.sk89q.worldedit.world.item.ItemType; import org.junit.Before; import org.junit.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import static org.junit.Assert.assertEquals; public class FlagTest { + private static final Logger logger = LoggerFactory.getLogger("P2/" + FlagTest.class.getSimpleName()); + private ItemType testBlock; @Before public void setUp() throws Exception { @@ -50,11 +54,11 @@ public class FlagTest { // //plot.setFlag(use, use.parseValue("33,33:1,6:4")); //TODO fix this so FlagTest will run during compile // Optional flag = plot.getFlag(use); // if (flag.isPresent()) { -// System.out.println(Flags.USE.valueToString(flag.get())); +// logger.info(Flags.USE.valueToString(flag.get())); // testBlock = ItemTypes.BONE_BLOCK; // flag.get().add(testBlock); // } -// flag.ifPresent(collection -> System.out.println(Flags.USE.valueToString(collection))); +// flag.ifPresent(collection -> logger.info(Flags.USE.valueToString(collection))); // Optional> flag2 = plot.getFlag(Flags.USE); // if (flag2.isPresent()) { // // assertThat(flag2.get(), (Matcher>) IsCollectionContaining.hasItem(testBlock)); diff --git a/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java b/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java index 26ddf72cc..be0b43e41 100644 --- a/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java +++ b/Core/src/test/java/com/plotsquared/core/plot/PlotVersionTest.java @@ -27,13 +27,17 @@ package com.plotsquared.core.plot; import com.plotsquared.core.PlotVersion; import org.junit.Test; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; public class PlotVersionTest { + private static final Logger logger = LoggerFactory.getLogger("P2/" + PlotVersionTest.class.getSimpleName()); + @Test public void tryParse() { //These are all random values chosen to form the test class. PlotVersion version = new PlotVersion("4.340", "f06903f", "19.08.05"); - System.out.println(version.versionString); + logger.info(version.versionString); } } From f9cd54c445618f863686329836aae4ccf5dfda88 Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Thu, 8 Oct 2020 20:54:06 +0200 Subject: [PATCH 33/35] Shift logger.info -> error when running in an outdated environment --- .../main/java/com/plotsquared/bukkit/BukkitPlatform.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java index 720602f72..c09bc47df 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java @@ -140,7 +140,6 @@ import javax.annotation.Nonnull; import javax.annotation.Nullable; import java.io.File; import java.lang.reflect.Method; -import java.util.AbstractMap; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; @@ -236,9 +235,9 @@ public final class BukkitPlatform extends JavaPlugin implements Listener, PlotPl final PlotSquared plotSquared = new PlotSquared(this, "Bukkit"); if (PlotSquared.platform().getServerVersion()[1] < 13) { - logger.info("You can't use this version of PlotSquared on a server less than Minecraft 1.13.2."); - logger.info("Please check the download page for the link to the legacy versions."); - logger.info("The server will now be shutdown to prevent any corruption."); + logger.error("You can't use this version of PlotSquared on a server less than Minecraft 1.13.2."); + logger.error("Please check the download page for the link to the legacy versions."); + logger.error("The server will now be shutdown to prevent any corruption."); Bukkit.shutdown(); return; } From bba499649bcfbe3cb48196756836ddbc773d986f Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Thu, 8 Oct 2020 20:56:33 +0200 Subject: [PATCH 34/35] No need to point if PAPI is not in use --- .../src/main/java/com/plotsquared/bukkit/BukkitPlatform.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java index c09bc47df..ead142a36 100644 --- a/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java +++ b/Bukkit/src/main/java/com/plotsquared/bukkit/BukkitPlatform.java @@ -486,8 +486,6 @@ public final class BukkitPlatform extends JavaPlugin implements Listener, PlotPl ChatFormatter.formatters.add(getInjector().getInstance(PlaceholderFormatter.class)); } logger.info("PlotSquared hooked into PlaceholderAPI"); - } else { - logger.info("PlaceholderAPI is not in use. Hook deactivated"); } this.startMetrics(); @@ -686,7 +684,6 @@ public final class BukkitPlatform extends JavaPlugin implements Listener, PlotPl } @SuppressWarnings("deprecation") private void runEntityTask() { - logger.info("KillAllEntities started"); TaskManager.runTaskRepeat(() -> this.plotAreaManager.forEachPlotArea(plotArea -> { final World world = Bukkit.getWorld(plotArea.getWorldName()); try { From f721a7c66cdf7dcfffc62af09da71d9a1d015e49 Mon Sep 17 00:00:00 2001 From: N0tMyFaultOG Date: Thu, 8 Oct 2020 21:25:09 +0200 Subject: [PATCH 35/35] Update build.gradle.kts --- build.gradle.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 5f7224ad9..723417229 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -120,10 +120,10 @@ allprojects { id.set("Saulitired") name.set("Alexander Söderberg") } - - // TODO: Add developers - // I don't know the rest of your names, so this is up to - // you to fill in. + developer { + id.set("N0tMyFaultOG") + name.set("NotMyFault") + } } scm {