Merge pull request #2400 from TigerBeanst/patch-1

fix isDouble()
This commit is contained in:
Golden Looly 2022-06-23 18:24:35 +08:00 committed by GitHub
commit e4a5acf52b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1285,7 +1285,7 @@ public class NumberUtil {
} catch (NumberFormatException ignore) {
// ignore
}
return true;
return false;
}
/**