Skip to content

Commit aee1175

Browse files
authored
Merge c62b6c9 into 2c81b7a
2 parents 2c81b7a + c62b6c9 commit aee1175

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/src/main/java/org/mobilitydata/gtfsvalidator/report/model/FeedMetadata.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ private <E extends GtfsEntity> int loadUniqueCount(
125125
if (entity != null) {
126126
E castedEntity = clazz.cast(entity);
127127
String id = idExtractor.apply(castedEntity);
128-
if (id != null) {
128+
if (id != null && !id.isEmpty()) {
129129
uniqueIds.add(id);
130130
}
131131
}

0 commit comments

Comments
 (0)