Made Location.clone() public.

By: sk89q <the.sk89q@gmail.com>
This commit is contained in:
Bukkit/Spigot
2011-01-08 12:39:54 -08:00
parent b94f401b3a
commit 75aa4ef4c5

View File

@@ -215,7 +215,7 @@ public class Location implements Cloneable {
} }
@Override @Override
protected Location clone() { public Location clone() {
return new Location(world, x, y, z, yaw, pitch); return new Location(world, x, y, z, yaw, pitch);
} }
} }