This is an automated email from the ASF dual-hosted git repository. khmarbaise pushed a change to branch STATISTICS-14 in repository https://gitbox.apache.org/repos/asf/commons-statistics.git.
discard 4e65221 [STATISTICS-14] - BigDecimalStatistics new 813f5b0 [STATISTICS-14] - BigDecimalStatistics new 2077ae4 Added package-info etc. new cf8a4bc WIP - STATISTICS-14 - Improved. new 9822824 WIP - STATISTICS-14 - Improved. new e0a3472 WIP - STATISTICS-14 - Improved code. new a16e516 WIP - STATISTICS-14 - Improved code. This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (4e65221) \ N -- N -- N refs/heads/STATISTICS-14 (a16e516) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../pom.xml | 67 +++--- .../descriptive}/BigDecimalSummaryStatistics.java | 113 ++++++---- .../bigdecimal/descriptive/package-info.java | 19 +- .../src}/site/resources/profile.jacoco | 0 .../BigDecimalSummaryStatisticsAssert.java | 54 +++++ .../BigDecimalSummaryStatisticsTest.java | 234 +++++++++++++++++++++ .../BigDecimalSummaryStatisticsTest.java | 59 ------ pom.xml | 1 + 8 files changed, 391 insertions(+), 156 deletions(-) copy {commons-statistics-regression => commons-statistics-bigdecimal}/pom.xml (55%) rename {commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution => commons-statistics-bigdecimal/src/main/java/org/apache/commons/statistics/bigdecimal/descriptive}/BigDecimalSummaryStatistics.java (61%) rename commons-statistics-distribution/src/main/java/org/apache/commons/statistics/distribution/BigDecimalConsumer.java => commons-statistics-bigdecimal/src/main/java/org/apache/commons/statistics/bigdecimal/descriptive/package-info.java (73%) copy {src => commons-statistics-bigdecimal/src}/site/resources/profile.jacoco (100%) create mode 100644 commons-statistics-bigdecimal/src/test/java/org/apache/commons/statistics/bigdecimal/descriptive/BigDecimalSummaryStatisticsAssert.java create mode 100644 commons-statistics-bigdecimal/src/test/java/org/apache/commons/statistics/bigdecimal/descriptive/BigDecimalSummaryStatisticsTest.java delete mode 100644 commons-statistics-distribution/src/test/java/org/apache/commons/statistics/distribution/BigDecimalSummaryStatisticsTest.java