This is an automated email from the ASF dual-hosted git repository. mattjuntunen pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/commons-geometry.git.
from 2e5c81c ignoring spotbugs false positives new 79e741d GEOMETRY-136: removing DoubleFormats utility that has been moved to commons-text new 61b29ca fixing spotbugs issues in examples The 2 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: .../jmh/io/core/DoubleFormatsPerformance.java | 183 ----- .../examples/jmh/io/core/package-info.java | 23 - .../examples/tutorials/bsp/BSPTreeSVGWriter.java | 64 +- .../io/core/utils/AbstractTextFormatWriter.java | 2 +- .../geometry/io/core/utils/DoubleFormats.java | 369 --------- .../geometry/io/core/utils/ParsedDouble.java | 514 ------------ .../core/utils/AbstractTextFormatWriterTest.java | 9 +- .../geometry/io/core/utils/DoubleFormatsTest.java | 894 --------------------- .../geometry/io/core/utils/ParsedDoubleTest.java | 464 ----------- .../threed/obj/ObjBoundaryWriteHandler3D.java | 3 +- .../txt/AbstractTextBoundaryWriteHandler3D.java | 3 +- .../threed/obj/ObjBoundaryWriteHandler3DTest.java | 30 +- .../io/euclidean/threed/obj/ObjWriterTest.java | 20 +- .../io/euclidean/threed/stl/TextStlWriterTest.java | 11 +- .../threed/txt/TextBoundaryWriteHandler3DTest.java | 17 +- .../threed/txt/TextFacetDefinitionWriterTest.java | 15 +- .../resources/spotbugs/spotbugs-exclude-filter.xml | 2 + 17 files changed, 115 insertions(+), 2508 deletions(-) delete mode 100644 commons-geometry-examples/examples-jmh/src/main/java/org/apache/commons/geometry/examples/jmh/io/core/DoubleFormatsPerformance.java delete mode 100644 commons-geometry-examples/examples-jmh/src/main/java/org/apache/commons/geometry/examples/jmh/io/core/package-info.java delete mode 100644 commons-geometry-io-core/src/main/java/org/apache/commons/geometry/io/core/utils/DoubleFormats.java delete mode 100644 commons-geometry-io-core/src/main/java/org/apache/commons/geometry/io/core/utils/ParsedDouble.java delete mode 100644 commons-geometry-io-core/src/test/java/org/apache/commons/geometry/io/core/utils/DoubleFormatsTest.java delete mode 100644 commons-geometry-io-core/src/test/java/org/apache/commons/geometry/io/core/utils/ParsedDoubleTest.java