Skip to content

Commit

Permalink
errorprone :: CheckedExceptionNotThrown in JournaledCoalescer
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-mlb committed Sep 18, 2024
1 parent e402c8d commit 7566460
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private void validateOutputPath() throws IOException {
* coalesced successfully but cleanup failed. If there are not any files with the same name, just rename the rolled
* file. Otherwise, the rolled file will get cleaned up with the normal process.
*/
private void cleanupOrphanedRolledFiles() throws IOException {
private void cleanupOrphanedRolledFiles() {
try (DirectoryStream<Path> stream = Files.newDirectoryStream(outputPath, "*" + ROLLED_EXT)) {
for (Path entry : stream) {
String finalOutputFilename = FilenameUtils.getBaseName(entry.toString());
Expand Down

0 comments on commit 7566460

Please sign in to comment.