From b7cb073b371aaff73c16be6c466d135c89f35670 Mon Sep 17 00:00:00 2001 From: FObermaier Date: Thu, 25 Jan 2024 09:28:39 +0100 Subject: [PATCH] fix javadoc Note: visibility of constructor is better than that of its arguments --- .../jts/simplify/TaggedLineStringSimplifier.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/core/src/main/java/org/locationtech/jts/simplify/TaggedLineStringSimplifier.java b/modules/core/src/main/java/org/locationtech/jts/simplify/TaggedLineStringSimplifier.java index 95b74ab84..a61df0fc6 100644 --- a/modules/core/src/main/java/org/locationtech/jts/simplify/TaggedLineStringSimplifier.java +++ b/modules/core/src/main/java/org/locationtech/jts/simplify/TaggedLineStringSimplifier.java @@ -80,7 +80,7 @@ private void simplifySection(int i, int j, int depth, double distanceTolerance) boolean isValidToSimplify = true; - /** + /* * Following logic ensures that there is enough points in the output line. * If there is already more points than the minimum, there's nothing to check. * Otherwise, if in the worst case there wouldn't be enough points, @@ -309,9 +309,8 @@ private boolean hasInvalidIntersection(LineSegment seg0, LineSegment seg1) /** * Remove the segs in the section of the line * @param line - * @param pts - * @param sectionStartIndex - * @param sectionEndIndex + * @param start + * @param end */ private void remove(TaggedLineString line, int start, int end)