Improved source code documenation.

This commit is contained in:
Erik C. Thauvin 2015-12-07 20:05:08 -08:00
parent ef7dd954a5
commit b71c488977

View file

@ -345,11 +345,11 @@ final class Utils
} }
/** /**
* Returns true if the given string is valid. * Returns <code>true</code> if the given string is <em>not</em> blank or null.
* *
* @param s The string to validate. * @param s The string to check.
* *
* @return true if the string is non-empty and not null, false otherwise. * @return <code>true</code> if the string is valid, <code>false</code> otherwise.
*/ */
public static boolean isValidString(final CharSequence s) public static boolean isValidString(final CharSequence s)
{ {
@ -420,4 +420,4 @@ final class Utils
return s; return s;
} }
} }