git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@649637
13f79535-47bb-0310-9956-
ffa450edef68
*/
public class ELSupport {
- private final static ELSupport REF = new ELSupport();
-
private final static Long ZERO = new Long(0L);
public final static void throwUnhandled(Object base, Object property)
public final static boolean isStringFloat(final String str) {
int len = str.length();
if (len > 1) {
- char c = 0;
for (int i = 0; i < len; i++) {
- switch (c = str.charAt(i)) {
+ switch (str.charAt(i)) {
case 'E':
return true;
case 'e':