mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GP-4109 - Fixed failure to open the last used project when running a new
release of Ghidra the first time
This commit is contained in:
parent
58e22a6f7b
commit
bfd16302f1
2 changed files with 4 additions and 4 deletions
|
@ -192,7 +192,7 @@ public class DefaultProjectManager implements ProjectManager {
|
|||
*/
|
||||
@Override
|
||||
public ProjectLocator getLastOpenedProject() {
|
||||
String projectPath = Preferences.getProperty(LAST_OPENED_PROJECT);
|
||||
String projectPath = Preferences.getProperty(LAST_OPENED_PROJECT, null, true);
|
||||
if (projectPath == null || projectPath.trim().length() == 0) {
|
||||
return null;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue