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

View File

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