From a8db293bcfb9ee5daa730524259f62ad37bdb324 Mon Sep 17 00:00:00 2001 From: xGamingDudex Date: Sun, 15 May 2016 17:04:25 +0200 Subject: [PATCH] Moved JavaDocs from ICosmeticShape (now removed) to CosmeticShape --- .../src/mineplex/core/common/shape/CosmeticShape.java | 8 +++++++- .../src/mineplex/core/common/shape/ICosmeticShape.java | 0 2 files changed, 7 insertions(+), 1 deletion(-) delete mode 100644 Plugins/Mineplex.Core.Common/src/mineplex/core/common/shape/ICosmeticShape.java diff --git a/Plugins/Mineplex.Core.Common/src/mineplex/core/common/shape/CosmeticShape.java b/Plugins/Mineplex.Core.Common/src/mineplex/core/common/shape/CosmeticShape.java index 2064c4932..37a02078e 100644 --- a/Plugins/Mineplex.Core.Common/src/mineplex/core/common/shape/CosmeticShape.java +++ b/Plugins/Mineplex.Core.Common/src/mineplex/core/common/shape/CosmeticShape.java @@ -2,9 +2,15 @@ package mineplex.core.common.shape; import org.bukkit.Location; +/** + * Interface used by classes which can display visuals at provided locations. + */ public interface CosmeticShape { - + /** + * Display a visual at the given location + * @param loc The location to display the visual at + */ void display(Location loc); } diff --git a/Plugins/Mineplex.Core.Common/src/mineplex/core/common/shape/ICosmeticShape.java b/Plugins/Mineplex.Core.Common/src/mineplex/core/common/shape/ICosmeticShape.java deleted file mode 100644 index e69de29bb..000000000