Skip to content

Commit

Permalink
Updating commons-io version (#217)
Browse files Browse the repository at this point in the history
Updates commons-io version to address security vulnerability. Removes exception handling that is no longer needed as a result. This is a more complete fix than #216.
  • Loading branch information
danthony06 authored Oct 3, 2024
1 parent c9086d8 commit ee3eed9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
<version>2.14.0</version>
</dependency>
<dependency>
<groupId>com.google.maps</groupId>
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/com/github/swrirobotics/bags/BagService.java
Original file line number Diff line number Diff line change
Expand Up @@ -767,9 +767,6 @@ void finish() {
catch (InterruptedException e) {
myLogger.warn("Interrupted waiting for consumer to finish.");
}
catch (IOException e) {
myLogger.warn("Error reading stderr from ffmpeg:", e);
}
}
}
}
Expand Down

0 comments on commit ee3eed9

Please sign in to comment.