Skip to content

Commit 879b8ef

Browse files
committed
chore: remove Python Validator URLRef in rules.html
1 parent 11396ce commit 879b8ef

22 files changed

+30
-121
lines changed

core/src/main/java/org/mobilitydata/gtfsvalidator/notice/DuplicateKeyNotice.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,7 @@
3131
@GtfsValidationNotice(
3232
severity = ERROR,
3333
sections = @SectionRefs(FILE_REQUIREMENTS),
34-
urls = {
35-
@UrlRef(
36-
label = "Original Python validator implementation",
37-
url = "https://github.com/google/transitfeed")
38-
})
34+
urls = {})
3935
public class DuplicateKeyNotice extends ValidationNotice {
4036

4137
/** The name of the faulty file */

core/src/main/java/org/mobilitydata/gtfsvalidator/notice/DuplicatedColumnNotice.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,7 @@
3030
@GtfsValidationNotice(
3131
severity = ERROR,
3232
sections = @SectionRefs(FILE_REQUIREMENTS),
33-
urls = {
34-
@UrlRef(
35-
label = "Original Python validator implementation",
36-
url = "https://github.com/google/transitfeed")
37-
})
33+
urls = {})
3834
public class DuplicatedColumnNotice extends ValidationNotice {
3935

4036
/** The name of the faulty file. */

core/src/main/java/org/mobilitydata/gtfsvalidator/notice/ForeignKeyViolationNotice.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,7 @@
3333
@GtfsValidationNotice(
3434
severity = ERROR,
3535
sections = @SectionRefs(FILE_REQUIREMENTS),
36-
urls = {
37-
@UrlRef(
38-
label = "Original Python validator implementation",
39-
url = "https://github.com/google/transitfeed")
40-
})
36+
urls = {})
4137
public class ForeignKeyViolationNotice extends ValidationNotice {
4238

4339
/** The name of the file from which reference is made. */

core/src/main/java/org/mobilitydata/gtfsvalidator/notice/InvalidRowLengthNotice.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,7 @@
3030
@GtfsValidationNotice(
3131
severity = ERROR,
3232
sections = @SectionRefs(FILE_REQUIREMENTS),
33-
urls = {
34-
@UrlRef(
35-
label = "Original Python validator implementation",
36-
url = "https://github.com/google/transitfeed")
37-
})
33+
urls = {})
3834
public class InvalidRowLengthNotice extends ValidationNotice {
3935

4036
/** The name of the faulty file. */

core/src/main/java/org/mobilitydata/gtfsvalidator/notice/NonAsciiOrNonPrintableCharNotice.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,7 @@
2828
*/
2929
@GtfsValidationNotice(
3030
severity = WARNING,
31-
urls = {
32-
@UrlRef(
33-
label = "Original Python validator implementation",
34-
url = "https://github.com/google/transitfeed")
35-
})
31+
urls = {})
3632
public class NonAsciiOrNonPrintableCharNotice extends ValidationNotice {
3733

3834
/** Name of the faulty file. */

core/src/main/java/org/mobilitydata/gtfsvalidator/notice/NumberOutOfRangeNotice.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,7 @@
3232
@GtfsValidationNotice(
3333
severity = ERROR,
3434
sections = @SectionRefs({FILE_REQUIREMENTS, FILED_TYPES, DATASET_FILES}),
35-
urls = {
36-
@UrlRef(
37-
label = "Original Python validator implementation",
38-
url = "https://github.com/google/transitfeed")
39-
})
35+
urls = {})
4036
public class NumberOutOfRangeNotice extends ValidationNotice {
4137

4238
/** The name of the faulty file. */

core/src/main/java/org/mobilitydata/gtfsvalidator/notice/PointNearOriginNotice.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,7 @@
2424
/** A point is too close to origin `(0, 0)`. */
2525
@GtfsValidationNotice(
2626
severity = ERROR,
27-
urls = {
28-
@UrlRef(
29-
label = "Original Python validator implementation",
30-
url = "https://github.com/google/transitfeed")
31-
})
27+
urls = {})
3228
public class PointNearOriginNotice extends ValidationNotice {
3329

3430
/** The name of the affected GTFS file. */

core/src/main/java/org/mobilitydata/gtfsvalidator/notice/PointNearPoleNotice.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,7 @@
2424
/** A point is too close to the North or South Pole. */
2525
@GtfsValidationNotice(
2626
severity = ERROR,
27-
urls = {
28-
@UrlRef(
29-
label = "Original Python validator implementation",
30-
url = "https://github.com/google/transitfeed")
31-
})
27+
urls = {})
3228
public class PointNearPoleNotice extends ValidationNotice {
3329

3430
/** The name of the affected GTFS file. */

core/src/main/java/org/mobilitydata/gtfsvalidator/notice/StartAndEndRangeEqualNotice.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,7 @@
3131
*/
3232
@GtfsValidationNotice(
3333
severity = ERROR,
34-
urls = {
35-
@UrlRef(
36-
label = "Original Python validator implementation",
37-
url = "https://github.com/google/transitfeed")
38-
})
34+
urls = {})
3935
public class StartAndEndRangeEqualNotice extends ValidationNotice {
4036

4137
/** The name of the faulty file. */

core/src/main/java/org/mobilitydata/gtfsvalidator/notice/StartAndEndRangeOutOfOrderNotice.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,7 @@
2929
*/
3030
@GtfsValidationNotice(
3131
severity = ERROR,
32-
urls = {
33-
@UrlRef(
34-
label = "Original Python validator implementation",
35-
url = "https://github.com/google/transitfeed")
36-
})
32+
urls = {})
3733
public class StartAndEndRangeOutOfOrderNotice extends ValidationNotice {
3834

3935
/** The name of the faulty file. */

0 commit comments

Comments
 (0)