cz.mallat.uasparser.Utils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of browsermob-proxy Show documentation
Show all versions of browsermob-proxy Show documentation
A programmatic HTTP/S designed for performance and functional testing
The newest version!
package cz.mallat.uasparser;
public class Utils {
public static boolean validString(String s) {
return s != null && !s.trim().isEmpty();
}
}