This is an automated email from the ASF dual-hosted git repository. garydgregory pushed a commit to branch 1.X in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git
commit b2c9674b53598cc0670904d79656df9c398a457c Author: Gary Gregory <[email protected]> AuthorDate: Fri Jun 26 17:44:39 2026 +0000 Sort members --- .../beanutils/locale/converters/BigDecimalLocaleConverter.java | 10 +++++----- .../beanutils/locale/converters/BigIntegerLocaleConverter.java | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/main/java/org/apache/commons/beanutils/locale/converters/BigDecimalLocaleConverter.java b/src/main/java/org/apache/commons/beanutils/locale/converters/BigDecimalLocaleConverter.java index c9dbb408..8f1f588d 100644 --- a/src/main/java/org/apache/commons/beanutils/locale/converters/BigDecimalLocaleConverter.java +++ b/src/main/java/org/apache/commons/beanutils/locale/converters/BigDecimalLocaleConverter.java @@ -160,6 +160,11 @@ public class BigDecimalLocaleConverter extends DecimalLocaleConverter { super(defaultValue, locale, pattern, locPattern); } + @Override + protected boolean isParseBigDecimal() { + return true; + } + /** * Convert the specified locale-sensitive input object into an output object of BigDecimal type. * @@ -182,9 +187,4 @@ public class BigDecimalLocaleConverter extends DecimalLocaleConverter { throw new ConversionException("Suplied number is not of type BigDecimal: " + result); } } - - @Override - protected boolean isParseBigDecimal() { - return true; - } } diff --git a/src/main/java/org/apache/commons/beanutils/locale/converters/BigIntegerLocaleConverter.java b/src/main/java/org/apache/commons/beanutils/locale/converters/BigIntegerLocaleConverter.java index 13bf58b4..022988dd 100644 --- a/src/main/java/org/apache/commons/beanutils/locale/converters/BigIntegerLocaleConverter.java +++ b/src/main/java/org/apache/commons/beanutils/locale/converters/BigIntegerLocaleConverter.java @@ -161,6 +161,11 @@ public class BigIntegerLocaleConverter extends DecimalLocaleConverter { super(defaultValue, locale, pattern, locPattern); } + @Override + protected boolean isParseBigDecimal() { + return true; + } + /** * Convert the specified locale-sensitive input object into an output object of BigInteger type. * @@ -189,9 +194,4 @@ public class BigIntegerLocaleConverter extends DecimalLocaleConverter { throw new ConversionException("Suplied number is not of type BigInteger: " + result); } } - - @Override - protected boolean isParseBigDecimal() { - return true; - } }
