Merge branch '2.2.x' into 2.3.x

Closes gh-22155
This commit is contained in:
Madhura Bhave 2020-06-29 17:08:37 -07:00
commit f19f2b8714
1 changed files with 1 additions and 2 deletions

View File

@ -114,8 +114,7 @@ public class ErrorPage {
}
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;