Removed unecessary variable (PMD)
This commit is contained in:
parent
063e23358b
commit
e785fd6852
1 changed files with 2 additions and 2 deletions
|
@ -173,10 +173,10 @@ public final class Utils {
|
||||||
* @return <code>true</code> if the string is valid, <code>false</code> 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) {
|
||||||
final int len;
|
if (s == null || s.length() == 0) {
|
||||||
if (s == null || (len = s.length()) == 0) {
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
final int len = s.length();
|
||||||
for (int i = 0; i < len; i++) {
|
for (int i = 0; i < len; i++) {
|
||||||
if (!Character.isWhitespace(s.charAt(i))) {
|
if (!Character.isWhitespace(s.charAt(i))) {
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue