mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
Test fixes
This commit is contained in:
parent
34d5435740
commit
bff95dc7c6
4 changed files with 11 additions and 7 deletions
|
@ -77,7 +77,7 @@ public interface DropDownTextFieldDataModel<T> {
|
|||
case STARTS_WITH:
|
||||
return createStartsWithPattern(input, false, Pattern.CASE_INSENSITIVE);
|
||||
case WILDCARD:
|
||||
return createSearchPattern(input, false);
|
||||
return createContainsPattern(input, true, Pattern.CASE_INSENSITIVE);
|
||||
default:
|
||||
throw new IllegalStateException("Cannot create pattern for mode: " + this);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue