summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattBDev <mattbdev@outlook.com>2015-03-13 20:54:48 -0400
committermd_5 <git@md-5.net>2015-03-22 14:41:17 +1100
commitb886a63f362f3f7f07890930b1d46b9f8ac85f13 (patch)
tree772bb4bf71ad896a30338dcfbdf2f7a842a263fb
parent2b61299288d0ae25d50d24d5cf74b5bcc0192230 (diff)
downloadbukkit-b886a63f362f3f7f07890930b1d46b9f8ac85f13.tar
bukkit-b886a63f362f3f7f07890930b1d46b9f8ac85f13.tar.gz
bukkit-b886a63f362f3f7f07890930b1d46b9f8ac85f13.tar.lz
bukkit-b886a63f362f3f7f07890930b1d46b9f8ac85f13.tar.xz
bukkit-b886a63f362f3f7f07890930b1d46b9f8ac85f13.zip
Update vague WorldBorder JavaDocs.
-rw-r--r--src/main/java/org/bukkit/WorldBorder.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/org/bukkit/WorldBorder.java b/src/main/java/org/bukkit/WorldBorder.java
index 10c46051..55c8983b 100644
--- a/src/main/java/org/bukkit/WorldBorder.java
+++ b/src/main/java/org/bukkit/WorldBorder.java
@@ -8,23 +8,23 @@ public interface WorldBorder {
public void reset();
/**
- * Gets the current border size.
+ * Gets the current side length of the border.
*
- * @return The current size of the border.
+ * @return The current side length of the border.
*/
public double getSize();
/**
- * Sets the border to a square region with the specified size in blocks.
+ * Sets the border to a square region with the specified side length in blocks.
*
* @param newSize The new size of the border.
*/
public void setSize(double newSize);
/**
- * Sets the border to a square region with the specified size in blocks.
+ * Sets the border to a square region with the specified side length in blocks.
*
- * @param newSize The new size of the border.
+ * @param newSize The new side length of the border.
* @param seconds The time in seconds in which the border grows or shrinks from the previous size to that being set.
*/
public void setSize(double newSize, long seconds);