Skip to content

Commit

Permalink
Fixed styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben-Edwards-cgi committed Nov 12, 2024
1 parent 1f19d89 commit 1774e6c
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@
*/
@Component
@Slf4j
public class FileContentChecksum {
public final class FileContentChecksum {

private FileContentChecksum() {

}

public static String calculate(InputStream inputStream) throws IOException {
return encodeToString(md5(inputStream));
Expand Down

0 comments on commit 1774e6c

Please sign in to comment.