Commit 255f8197 authored by Madhura Bhave's avatar Madhura Bhave

Merge branch '2.3.x'

Closes gh-22156
parents 7de3d079 f19f2b87
...@@ -114,8 +114,7 @@ public class ErrorPage { ...@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment