#794 - Refactor - tidy code, use uppercase L for Long literal

This commit is contained in:
Robin Bygrave
2016-07-31 23:33:07 +12:00
parent 79b8395f8f
commit ee0615caec
@@ -10,6 +10,6 @@ public class DmlUtil {
* Return true if the value is null or a Numeric 0 (for primitive int's and long's) or Option empty.
*/
public static boolean isNullOrZero(Object value) {
return value == null || value instanceof Number && ((Number) value).longValue() == 0l;
return value == null || value instanceof Number && ((Number) value).longValue() == 0L;
}
}