com.github.panhongan.util.ObjectUtil Maven / Gradle / Ivy
package com.github.panhongan.util;
public class ObjectUtil {
public static boolean isNull(Object obj) {
return (obj == null);
}
}
package com.github.panhongan.util;
public class ObjectUtil {
public static boolean isNull(Object obj) {
return (obj == null);
}
}