mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-25 13:42:06 +00:00
GP-3717 store analysis task times only if unsaved changes exist
This commit is contained in:
parent
4fbb7bf45a
commit
6866d3ead7
@ -1319,6 +1319,10 @@ public class AutoAnalysisManager implements DomainObjectListener, DomainObjectCl
|
||||
return;
|
||||
}
|
||||
|
||||
if (!p.isChanged()) {
|
||||
return; // avoid storing task times if no other unsaved change exists
|
||||
}
|
||||
|
||||
StoredAnalyzerTimes times = StoredAnalyzerTimes.getStoredAnalyzerTimes(program);
|
||||
|
||||
String taskNames[] = getTimedTasks();
|
||||
|
Loading…
Reference in New Issue
Block a user