Removed debug code

This commit is contained in:
Frank 2022-01-28 16:38:09 +01:00
parent 7ce674b1f6
commit 0a438ae0e4

View file

@ -256,7 +256,7 @@ public class HelloClient extends DataHandler.FromServer {
SubFile localSubFile = localDescriptor.getLocalSubFile(subFile.relPath); SubFile localSubFile = localDescriptor.getLocalSubFile(subFile.relPath);
if (localSubFile != null) { if (localSubFile != null) {
//the file exists locally, check if the hashes match //the file exists locally, check if the hashes match
if (true || !localSubFile.hash.equals(subFile.hash)) { if (!localSubFile.hash.equals(subFile.hash)) {
BCLib.LOGGER.info(" * " + subFile.relPath + " (changed)"); BCLib.LOGGER.info(" * " + subFile.relPath + " (changed)");
filesToRequest.add(new AutoSyncID.ForDirectFileRequest(desc.folderID, new File(subFile.relPath))); filesToRequest.add(new AutoSyncID.ForDirectFileRequest(desc.folderID, new File(subFile.relPath)));
} }