Skip to content

Commit fd300a1

Browse files
Fix formatting
1 parent 773478a commit fd300a1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

onebusaway-gtfs-transformer/src/main/java/org/onebusaway/gtfs_transformer/impl/RemoveEntityUpdateStrategy.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ public void run(TransformContext context, GtfsMutableRelationalDao dao, Object o
4747
case ServiceIdKey key -> _library.removeCalendar(dao, key.getId());
4848
case Transfer transfer -> _library.removeTransfer(dao, transfer);
4949
case FeedInfo info -> _library.removeFeedInfo(dao, info);
50-
case null, default -> throw new NoSuchMethodError("attempt to remove entity of type " + obj.getClass());
50+
case null, default ->
51+
throw new NoSuchMethodError("attempt to remove entity of type " + obj.getClass());
5152
}
5253
}
5354
}

0 commit comments

Comments
 (0)