From 2cfb64606525a6deffdd659e9168156629dc614b Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Thu, 23 Jul 2020 18:11:52 +0100 Subject: [PATCH] Javadoc no fun --- Core/src/main/java/com/plotsquared/core/util/ChunkUtil.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 fc73c7ba1..d60cb0f6b 100644 --- a/Core/src/main/java/com/plotsquared/core/util/ChunkUtil.java +++ b/Core/src/main/java/com/plotsquared/core/util/ChunkUtil.java @@ -119,12 +119,12 @@ public class ChunkUtil { } /** - * Returns true if the region pos1 -> pos2 contains the chunk + * Returns true if the region pos1-pos2 contains the chunk * * @param pos1 Region minimum point * @param pos2 Region maximum point * @param chunk BlockVector2 of chunk coordinates - * @return true if the region pos1 -> pos2 contains the chunk + * @return true if the region pos1-pos2 contains the chunk */ public static boolean isWholeChunk(Location pos1, Location pos2, BlockVector2 chunk) { int x1 = pos1.getX();