1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -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 // Complete or session rename history
public Map<File, File> getRenameLog() throws IOException { 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 { public Map<File, File> getRenameLog(boolean complete) throws IOException {