Skip to content

Commit

Permalink
OAK-10390: Update commons-io dependency to 2.13.0 (#1059)
Browse files Browse the repository at this point in the history
* OAK-10390: Update commons-io dependency to 2.13.0

* OAK-10390: Update commons-io dependency to 2.13.0 - accept NPE for null arguments in filters (change in commons-io API)
  • Loading branch information
reschke authored and mbaedke committed Sep 19, 2023
1 parent a978c3d commit 97df367
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ public void testBackendMetadataRecordExists() throws DataStoreException {
try {
fds.metadataRecordExists(name);
}
catch (IllegalArgumentException e) { }
catch (IllegalArgumentException | NullPointerException e) { }
}
else {
assertFalse(fds.metadataRecordExists(name));
Expand Down
2 changes: 1 addition & 1 deletion oak-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
<version>2.13.0</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
Expand Down
1 change: 0 additions & 1 deletion oak-search-mt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 97df367

Please sign in to comment.