Skip to content

Commit

Permalink
scalafmt
Browse files Browse the repository at this point in the history
  • Loading branch information
thesamet committed Jan 20, 2024
1 parent 244bdc4 commit 2d90260
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bridge/src/main/scala/protocbridge/FileCache.scala
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ final class FileCache[K](
// exists or in use, but (hopefully) we can silently ignore it since the file is
// already there.
if (!Files.isRegularFile(path)) {
throw new IOException("File move failed and destination does not exist", e)
throw new IOException(
"File move failed and destination does not exist",
e
)
}
}
dst
Expand Down

0 comments on commit 2d90260

Please sign in to comment.