1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

Experiment with PGP signed messages

This commit is contained in:
Reinhard Pointner 2018-06-11 00:45:42 +07:00
parent b672184f72
commit 86ab36028e
2 changed files with 4 additions and 0 deletions

View File

@ -576,6 +576,8 @@ public class CmdlineOperations implements CmdlineInterface {
throw new CmdlineException("Failed to identify or process any files");
}
LICENSE.check();
// rename files
Map<File, File> renameLog = new LinkedHashMap<File, File>();

View File

@ -73,6 +73,8 @@ class RenameAction extends AbstractAction {
return;
}
LICENSE.check();
List<Match<Object, File>> matches = new ArrayList<Match<Object, File>>(model.matches());
StandardRenameAction action = (StandardRenameAction) getValue(RENAME_ACTION);