getPersistentRenameLog()
This commit is contained in:
parent
226c0d6d22
commit
98a688a770
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue