Merge branch '2.3.x'

Closes gh-22156
pull/22163/head
Madhura Bhave 4 years ago
commit 255f8197ab

@ -114,8 +114,7 @@ public class ErrorPage {
} }
if (obj instanceof ErrorPage) { if (obj instanceof ErrorPage) {
ErrorPage other = (ErrorPage) obj; ErrorPage other = (ErrorPage) obj;
boolean rtn = true; boolean rtn = ObjectUtils.nullSafeEquals(getExceptionName(), other.getExceptionName());
rtn = rtn && ObjectUtils.nullSafeEquals(getExceptionName(), other.getExceptionName());
rtn = rtn && ObjectUtils.nullSafeEquals(this.path, other.path); rtn = rtn && ObjectUtils.nullSafeEquals(this.path, other.path);
rtn = rtn && this.status == other.status; rtn = rtn && this.status == other.status;
return rtn; return rtn;

Loading…
Cancel
Save