Add explict default case

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1565252 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2014-02-06 13:48:08 +00:00
parent eabd95a51c
commit 65392be352
1 changed files with 2 additions and 0 deletions

View File

@ -627,6 +627,8 @@ public static Boolean toBooleanObject(final String str) {
}
break;
}
default:
break;
}
return null;