File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
main/java/com/conveyal/datatools/manager
test/java/com/conveyal/datatools Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -294,7 +294,6 @@ public static Set<String> getOrphanedDBSchemas(Set<String> associatedSchemas) {
294
294
Set <String > orphanedSchemas = new HashSet <>();
295
295
try (Connection connection = GTFS_DATA_SOURCE .getConnection ()) {
296
296
String sql = String .format ("SELECT nspname FROM pg_namespace %s" , whereClause );
297
- LOG .info (sql );
298
297
PreparedStatement preparedStatement = connection .prepareStatement (sql );
299
298
ResultSet resultSet = preparedStatement .executeQuery ();
300
299
while (resultSet .next ()) {
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ static void setUp() throws IOException {
75
75
// Delete feed version to orphan DB schema.
76
76
Persistence .feedVersions .removeById (feedVersionWithOrphanDBSchema .id );
77
77
78
- for (int i =0 ; i <5 ; i ++){
78
+ for (int i =0 ; i <5 ; i ++) {
79
79
createFeedVersion (
80
80
feedSourceWithObsoleteFeedVersion ,
81
81
zipFolderFiles ("fake-agency-with-only-calendar" )
You can’t perform that action at this time.
0 commit comments