whoops, remove debug
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m2s
Publish Docker Image / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 55s

This commit is contained in:
Lee 2024-06-02 10:44:06 +01:00
parent ae718e97f5
commit 1e2503ef44

@ -63,7 +63,6 @@ public class FileHeaderChecker {
* @return true if the string contains a known file header, false otherwise
*/
public static boolean containsFileHeader(String input) {
System.out.println("Checking for file headers in: " + input);
byte[] byteArray = stringToByteArray(input);
for (byte[] header : FILE_HEADERS.values()) {