Removed debug from util.

This commit is contained in:
Tastybento 2018-04-18 11:18:07 -07:00
parent 1fd2b93ce8
commit 01aef76eb5

View File

@ -56,7 +56,6 @@ public class Util {
* @return Location
*/
public static Location getLocationString(final String s) {
plugin.getLogger().info("DEBUG: getting location from string");
if (s == null || s.trim().equals("")) {
return null;
}
@ -73,7 +72,6 @@ public class Util {
final float pitch = Float.intBitsToFloat(Integer.parseInt(parts[5]));
return new Location(w, x, y, z, yaw, pitch);
}
plugin.getLogger().info("DEBUG: not right length");
return null;
}