summaryrefslogtreecommitdiffstats
path: root/src/test
diff options
context:
space:
mode:
authorTomyLobo <tomylobo@nurfuerspam.de>2011-11-25 02:09:30 +0100
committerTravis Watkins <amaranth@ubuntu.com>2012-06-28 19:33:33 -0500
commit16d0694dcf9f44d329f1ed17ad97084ffc7afcdf (patch)
treecf57f207d2a03a8468f0f7e6553c924c7f00b6b5 /src/test
parent34b63c06cc2a3e7ab25b69c047893c477ab500ba (diff)
downloadbukkit-16d0694dcf9f44d329f1ed17ad97084ffc7afcdf.tar
bukkit-16d0694dcf9f44d329f1ed17ad97084ffc7afcdf.tar.gz
bukkit-16d0694dcf9f44d329f1ed17ad97084ffc7afcdf.tar.lz
bukkit-16d0694dcf9f44d329f1ed17ad97084ffc7afcdf.tar.xz
bukkit-16d0694dcf9f44d329f1ed17ad97084ffc7afcdf.zip
Add an isValid() method to Entity. Addresses BUKKIT-810
Diffstat (limited to 'src/test')
-rw-r--r--src/test/java/org/bukkit/plugin/messaging/TestPlayer.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java b/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java
index 15e60c14..061a5e06 100644
--- a/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java
+++ b/src/test/java/org/bukkit/plugin/messaging/TestPlayer.java
@@ -760,4 +760,8 @@ public class TestPlayer implements Player {
public boolean hasLineOfSight(Entity other) {
throw new UnsupportedOperationException("Not supported yet.");
}
+
+ public boolean isValid() {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
}