com.goeuro.sync4j.utils.Strings Maven / Gradle / Ivy
package com.goeuro.sync4j.utils;
import javax.annotation.Nullable;
public final class Strings {
public static boolean isEmpty(@Nullable String what) {
return what == null || what.isEmpty();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy