Skip to content

Commit

Permalink
Merge branch '2.3.x'
Browse files Browse the repository at this point in the history
Closes gh-22156
  • Loading branch information
mbhave committed Jun 30, 2020
2 parents 7de3d07 + f19f2b8 commit 255f819
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -114,8 +114,7 @@ public boolean equals(Object obj) {
}
if (obj instanceof ErrorPage) {
ErrorPage other = (ErrorPage) obj;
boolean rtn = true;
rtn = rtn && ObjectUtils.nullSafeEquals(getExceptionName(), other.getExceptionName());
boolean rtn = ObjectUtils.nullSafeEquals(getExceptionName(), other.getExceptionName());
rtn = rtn && ObjectUtils.nullSafeEquals(this.path, other.path);
rtn = rtn && this.status == other.status;
return rtn;
Expand Down

0 comments on commit 255f819

Please sign in to comment.