Sign Up Login API FAQ Tools Trends Archive PASTEBIN new paste trends API tools faq Guest User - Public Pastes Untitled 4 sec ago Untitled 4 sec ago DONT FUCKING LEAK ... 6 sec ago Untitled Python | 8 sec ago Untitled 11 sec ago Untitled 21 sec ago Untitled 22 sec ago Untitled 39 sec ago Pastebin PRO Accounts SUMMER SPECIAL! For a limited time only get 40% discount on a LIFETIME PRO account! Offer Ends Soon ! SHARE TWEET a guest Sep 15th, 2016 50 Never raw download clone embed report print text 0.35 KB /** * isEmptyString - answers if the string passed is empty * * @param sString - string to evaluate. * * @return - true/false: is the string empty or not? */ public static boolean isEmptyString(String sString) { if (sString == null) { return true; } if (sString.isEmpty()) { return tru...