Skip to content

Commit

Permalink
XCOMMONS-1455: FilterStreamType#equals does not take the version into…
Browse files Browse the repository at this point in the history
… account
  • Loading branch information
tmortagne committed Aug 10, 2018
1 parent d10daeb commit 7e79f77
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -260,7 +260,8 @@ public boolean equals(Object object)
} else {
if (object instanceof FilterStreamType) {
result = Objects.equals(getType(), ((FilterStreamType) object).getType())
&& Objects.equals(getDataFormat(), ((FilterStreamType) object).getDataFormat());
&& Objects.equals(getDataFormat(), ((FilterStreamType) object).getDataFormat())
&& Objects.equals(getVersion(), ((FilterStreamType) object).getVersion());
} else {
result = false;
}
Expand Down

0 comments on commit 7e79f77

Please sign in to comment.