mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-24 13:11:47 +00:00
GP-1738 fix to use default value if options type has changed. Blows up
by returning the wrong type otherwise.
This commit is contained in:
parent
9a3bc197d2
commit
4ff1feeb05
@ -21,8 +21,7 @@ import java.util.*;
|
||||
|
||||
import db.*;
|
||||
import ghidra.framework.options.*;
|
||||
import ghidra.util.HelpLocation;
|
||||
import ghidra.util.SystemUtilities;
|
||||
import ghidra.util.*;
|
||||
import ghidra.util.exception.ClosedException;
|
||||
|
||||
/**
|
||||
@ -280,6 +279,10 @@ class OptionsDB extends AbstractOptions {
|
||||
if (optionType == getOptionType()) {
|
||||
value = optionType.convertStringToObject(rec.getString(VALUE_COL));
|
||||
}
|
||||
else {
|
||||
Msg.info(this, "The type for '" + this.getName() + "' has changed! Using default value.");
|
||||
value = getDefaultValue();
|
||||
}
|
||||
}
|
||||
}
|
||||
isCached = true;
|
||||
|
Loading…
Reference in New Issue
Block a user