Skip to content

Commit 6a27a59

Browse files
committed
improvement(Addressed PR feedback): Removed logging and address formatting
1 parent 786c040 commit 6a27a59

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/main/java/com/conveyal/datatools/manager/DataSanitizer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,6 @@ public static Set<String> getOrphanedDBSchemas(Set<String> associatedSchemas) {
294294
Set<String> orphanedSchemas = new HashSet<>();
295295
try (Connection connection = GTFS_DATA_SOURCE.getConnection()) {
296296
String sql = String.format("SELECT nspname FROM pg_namespace %s", whereClause);
297-
LOG.info(sql);
298297
PreparedStatement preparedStatement = connection.prepareStatement(sql);
299298
ResultSet resultSet = preparedStatement.executeQuery();
300299
while (resultSet.next()) {

src/test/java/com/conveyal/datatools/DataSanitizerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ static void setUp() throws IOException {
7575
// Delete feed version to orphan DB schema.
7676
Persistence.feedVersions.removeById(feedVersionWithOrphanDBSchema.id);
7777

78-
for(int i=0; i<5; i++){
78+
for (int i=0; i<5; i++) {
7979
createFeedVersion(
8080
feedSourceWithObsoleteFeedVersion,
8181
zipFolderFiles("fake-agency-with-only-calendar")

0 commit comments

Comments
 (0)