getPersistentRenameLog()

This commit is contained in:
Reinhard Pointner 2017-06-25 11:53:25 +08:00
parent 226c0d6d22
commit 98a688a770
1 changed files with 5 additions and 1 deletions

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 {