Skip to content

Commit d462f69

Browse files
authored
Cleanup obsolete comments in testcase (#1646)
1 parent f849a2b commit d462f69

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

src/test/java/org/tailormap/api/geotools/processing/GeometryProcessorTest.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,9 @@ void simplify_polygon() throws ParseException {
9191

9292
final Geometry p2 = new WKTReader2().read(simplified);
9393
assertTrue(p.overlaps(p2), "source polygon should overlap simplified");
94-
// /* PMD.JUnitAssertionsShouldIncludeMessage */
95-
// assertThat(100 * p2.intersection(p).getArea() / p.getArea())
96-
// .as("intersection area should be about 99% of original")
97-
// .isCloseTo(99, within(1d));
9894
assertThat(
9995
"intersection area should be about 99% of original",
10096
100 * p2.intersection(p).getArea() / p.getArea(), closeTo(99, 1d));
101-
102-
// .isCloseTo(99, within(1d));
10397
}
10498

10599
@Test

0 commit comments

Comments
 (0)