aherbert commented on a change in pull request #32:
URL: https://github.com/apache/commons-statistics/pull/32#discussion_r725449359



##########
File path: 
commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/DistributionException.java
##########
@@ -53,6 +53,6 @@
      * @param formatArguments Arguments for formatting the message.
      */
     DistributionException(String message, Object... formatArguments) {
-        super(String.format((Locale) null, message, formatArguments));
+        super(String.format( null, message, formatArguments));

Review comment:
       Either replace with Locale.ROOT or remove it totally.
   ```java
   super(String.format(message, formatArguments));
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to