mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-07 13:28:12 +00:00
Revert ValidationMessage equality fix (on another branch)
This commit is contained in:
parent
45d7adc42f
commit
f3fde7b998
@ -757,11 +757,7 @@ public class ValidationMessage implements Comparator<ValidationMessage>, Compara
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
return (
|
||||
this.getMessage() != null && this.getMessage().equals(((ValidationMessage)o).getMessage()))
|
||||
&& (this.getLocation() != null && this.getLocation().equals(((ValidationMessage)o).getLocation()))
|
||||
&& (this.getLevel() != null && this.getLevel().equals(((ValidationMessage)o).getLevel()))
|
||||
;
|
||||
return (this.getMessage() != null && this.getMessage().equals(((ValidationMessage)o).getMessage())) && (this.getLocation() != null && this.getLocation().equals(((ValidationMessage)o).getLocation()));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user