mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-02 17:09:18 +00:00
minor formatting changes
This commit is contained in:
parent
082686d9c5
commit
5169d9d80f
@ -149,5 +149,4 @@ public final class ConfigurationUtils {
|
||||
throw new IllegalArgumentException("property [" + propertyName + "] isn't a map, but of type [" + value.getClass().getName() + "]");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -80,8 +80,12 @@ public class TransportData implements Writeable<TransportData>, ToXContent {
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) return true;
|
||||
if (o == null || getClass() != o.getClass()) return false;
|
||||
if (this == o) {
|
||||
return true;
|
||||
}
|
||||
if (o == null || getClass() != o.getClass()) {
|
||||
return false;
|
||||
}
|
||||
TransportData that = (TransportData) o;
|
||||
return Objects.equals(data, that.data);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user