Skip to content

Commit

Permalink
refactor(PR feedback): Just removed a few redundant lines
Browse files Browse the repository at this point in the history
  • Loading branch information
br648 committed Oct 5, 2023
1 parent 1a96682 commit 90bf5f0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/com/conveyal/gtfs/PatternBuilder.java
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ private void updateTripPatternIds(
Statement statement,
String tripsTableName
) throws SQLException, IOException {

LOG.info("Updating trips with pattern IDs.");
// Copy file contents into temp pattern for trips table.
copyFromFile(connection, tempPatternForTripsTextFile, TEMP_FILE_NAME);
Expand Down Expand Up @@ -190,7 +189,6 @@ private void createIndexes(
* Construct pattern stops based on values in trip pattern key.
*/
private void createPatternStops(TripPatternKey key, String patternId, Table patternStopsTable) throws SQLException {

String insertPatternStopSql = patternStopsTable.generateInsertSql(true);
PreparedStatement insertPatternStopStatement = connection.prepareStatement(insertPatternStopSql);
BatchTracker patternStopTracker = new BatchTracker("pattern stop", insertPatternStopStatement);
Expand Down

0 comments on commit 90bf5f0

Please sign in to comment.