diff --git a/src/com/massivecraft/massivecore/command/editor/Property.java b/src/com/massivecraft/massivecore/command/editor/Property.java index 23a5e2bb..7e08a3d3 100644 --- a/src/com/massivecraft/massivecore/command/editor/Property.java +++ b/src/com/massivecraft/massivecore/command/editor/Property.java @@ -149,7 +149,7 @@ public abstract class Property implements Named public String getInheritedVisual(O object, O source, V value, CommandSender sender) { String string = this.getValueType().getVisual(value, sender); - if (string == null) + /*if (string == null) { System.out.println("value type " + this.getValueType()); System.out.println("value type name" + this.getValueType().getTypeName()); @@ -157,7 +157,7 @@ public abstract class Property implements Named System.out.println("source " + source); System.out.println("value " + value); System.out.println("sender " + sender); - } + }*/ String suffix = null; if (source != null && ! source.equals(object)) diff --git a/src/com/massivecraft/massivecore/command/type/TypeMillisDiff.java b/src/com/massivecraft/massivecore/command/type/TypeMillisDiff.java index fb015728..b6cec622 100644 --- a/src/com/massivecraft/massivecore/command/type/TypeMillisDiff.java +++ b/src/com/massivecraft/massivecore/command/type/TypeMillisDiff.java @@ -49,6 +49,4 @@ public class TypeMillisDiff extends TypeAbstractException return Collections.emptySet(); } - - } diff --git a/src/com/massivecraft/massivecore/util/TimeDiffUtil.java b/src/com/massivecraft/massivecore/util/TimeDiffUtil.java index 5ad53ec9..f7ae8e84 100644 --- a/src/com/massivecraft/massivecore/util/TimeDiffUtil.java +++ b/src/com/massivecraft/massivecore/util/TimeDiffUtil.java @@ -94,7 +94,7 @@ public class TimeDiffUtil TimeUnit unit = TimeUnit.get(unitString); if (unit == null) { - throw new Exception("\""+unit+"\" is not a valid time unit."); + throw new Exception("\""+unitString+"\" is not a valid time unit."); } // Add to the return map