com.structurizr.util.StringUtils Maven / Gradle / Ivy
package com.structurizr.util;
public final class StringUtils {
public static boolean isNullOrEmpty(String s) {
return s == null || s.trim().length() == 0;
}
}
package com.structurizr.util;
public final class StringUtils {
public static boolean isNullOrEmpty(String s) {
return s == null || s.trim().length() == 0;
}
}