mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-16 09:47: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;
|
Keyword other = (Keyword) obj;
|
||||||
return (this.searchTerm.equals(other.getSearchTerm())
|
return (this.searchTerm.equals(other.getSearchTerm())
|
||||||
&& this.isLiteral == other.searchTermIsLiteral()
|
&& this.isLiteral == other.searchTermIsLiteral()
|
||||||
&& this.isWholeWord == other.searchTermIsWholeWord());
|
&& this.isWholeWord == other.searchTermIsWholeWord()
|
||||||
|
&& this.listName.equals(other.getListName())
|
||||||
|
&& this.originalTerm.equals(other.getOriginalTerm()));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user