Merge pull request #22240 from izeye

* pr/22240:
  Polish ErrorPage.equals()

Closes gh-22240
This commit is contained in:
Stephane Nicoll 2020-07-07 14:01:37 +02:00
commit 14c80c73c8

View File

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