You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Haris Adzemovic (Jira)" <ji...@apache.org> on 2019/10/29 10:19:00 UTC

[jira] [Created] (CONFIGURATION-766) BigDecimal(double) should not be used

Haris Adzemovic created CONFIGURATION-766:
---------------------------------------------

             Summary: BigDecimal(double) should not be used
                 Key: CONFIGURATION-766
                 URL: https://issues.apache.org/jira/browse/CONFIGURATION-766
             Project: Commons Configuration
          Issue Type: Bug
         Environment: A single occurrence in file PropertyConverter.java, line 393:
{code:java}
return new BigDecimal(n.doubleValue());
{code}
            Reporter: Haris Adzemovic


Static analysis with SonarQube shows a violation of ruleĀ [S2111|[https://rules.sonarsource.com/java/type/Bug/RSPEC-2111]] - a dangerous use of the BigDecimal constructor.

Fixed by using BigDecimal.valueOf(param) instead.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)