1
0
mirror of https://github.com/mitb-archive/filebot synced 2025-03-09 22:09:47 -04:00

getPersistentRenameLog()

This commit is contained in:
Reinhard Pointner 2017-06-25 11:53:25 +08:00
parent 226c0d6d22
commit 98a688a770

View File

@ -186,7 +186,11 @@ public abstract class ScriptShellBaseClass extends Script {
// Complete or session rename history
public Map<File, File> getRenameLog() throws IOException {
return getRenameLog(false);
return HistorySpooler.getInstance().getSessionHistory().getRenameMap();
}
public Map<File, File> getPersistentRenameLog() throws IOException {
return HistorySpooler.getInstance().getCompleteHistory().getRenameMap();
}
public Map<File, File> getRenameLog(boolean complete) throws IOException {