mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-15 01:07:42 +00:00
Modified Keyword.equals() method to take the new fileds into account
This commit is contained in:
parent
a05b4f73c5
commit
3701ca74f9
@ -193,7 +193,9 @@ class Keyword {
|
||||
Keyword other = (Keyword) obj;
|
||||
return (this.searchTerm.equals(other.getSearchTerm())
|
||||
&& this.isLiteral == other.searchTermIsLiteral()
|
||||
&& this.isWholeWord == other.searchTermIsWholeWord());
|
||||
&& this.isWholeWord == other.searchTermIsWholeWord()
|
||||
&& this.listName.equals(other.getListName())
|
||||
&& this.originalTerm.equals(other.getOriginalTerm()));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user