Simplify logic in ErrorPage's equals method

See gh-22082
This commit is contained in:
May 2020-06-24 15:03:14 +08:00 committed by Madhura Bhave
parent 67060731bc
commit c1b9d3c226

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;