diff --git a/main/src/main/java/org/mobilitydata/gtfsvalidator/validator/ShapeIncreasingDistanceValidator.java b/main/src/main/java/org/mobilitydata/gtfsvalidator/validator/ShapeIncreasingDistanceValidator.java index 2981c7a2e3..a292b2c21e 100644 --- a/main/src/main/java/org/mobilitydata/gtfsvalidator/validator/ShapeIncreasingDistanceValidator.java +++ b/main/src/main/java/org/mobilitydata/gtfsvalidator/validator/ShapeIncreasingDistanceValidator.java @@ -35,8 +35,8 @@ * *
Severity: {@code SeverityLevel.WARNING} */ - static class EqualShapeDistanceSameCoordinatesNotice extends ValidationNotice { + static class EqualShapeDistanceSameCoordinatesNotice2 extends ValidationNotice { private final String shapeId; private final int csvRowNumber; private final double shapeDistTraveled; @@ -129,7 +129,7 @@ static class EqualShapeDistanceSameCoordinatesNotice extends ValidationNotice { private final double prevShapeDistTraveled; private final int prevShapePtSequence; - EqualShapeDistanceSameCoordinatesNotice(GtfsShape previous, GtfsShape current) { + EqualShapeDistanceSameCoordinatesNotice2(GtfsShape previous, GtfsShape current) { super(SeverityLevel.WARNING); this.shapeId = current.shapeId(); this.csvRowNumber = current.csvRowNumber(); @@ -150,7 +150,7 @@ static class EqualShapeDistanceSameCoordinatesNotice extends ValidationNotice { * *
Severity: {@code SeverityLevel.ERROR} */ - static class EqualShapeDistanceDiffCoordinatesNotice extends ValidationNotice { + static class EqualShapeDistanceDiffCoordinatesNotice2 extends ValidationNotice { private final String shapeId; private final int csvRowNumber; private final double shapeDistTraveled; @@ -160,7 +160,7 @@ static class EqualShapeDistanceDiffCoordinatesNotice extends ValidationNotice { private final int prevShapePtSequence; private final double actualDistanceBetweenShapePoints; - EqualShapeDistanceDiffCoordinatesNotice(GtfsShape previous, GtfsShape current) { + EqualShapeDistanceDiffCoordinatesNotice2(GtfsShape previous, GtfsShape current) { super(SeverityLevel.ERROR); this.shapeId = current.shapeId(); this.csvRowNumber = current.csvRowNumber();