File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
src/main/java/org/springframework/hateoas/mediatype/vnderrors Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -225,12 +225,15 @@ public Object getLogref() {
225225 @ Override
226226 public boolean equals (Object o ) {
227227
228- if (this == o )
228+ if (this == o ) {
229229 return true ;
230- if (!(o instanceof VndErrors ))
230+ }
231+ if (!(o instanceof VndErrors )) {
231232 return false ;
232- if (!super .equals (o ))
233+ }
234+ if (!super .equals (o )) {
233235 return false ;
236+ }
234237 VndErrors vndErrors = (VndErrors ) o ;
235238 return Objects .equals (this .errors , vndErrors .errors ) && Objects .equals (this .message , vndErrors .message )
236239 && Objects .equals (this .logref , vndErrors .logref );
@@ -310,12 +313,15 @@ public Object getLogref() {
310313 @ Override
311314 public boolean equals (Object o ) {
312315
313- if (this == o )
316+ if (this == o ) {
314317 return true ;
315- if (!(o instanceof VndError ))
318+ }
319+ if (!(o instanceof VndError )) {
316320 return false ;
317- if (!super .equals (o ))
321+ }
322+ if (!super .equals (o )) {
318323 return false ;
324+ }
319325 VndError vndError = (VndError ) o ;
320326 return Objects .equals (this .message , vndError .message ) && Objects .equals (this .path , vndError .path )
321327 && Objects .equals (this .logref , vndError .logref );
You can’t perform that action at this time.
0 commit comments