mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-03 09:29:11 +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() + "]");
|
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
|
@Override
|
||||||
public boolean equals(Object o) {
|
public boolean equals(Object o) {
|
||||||
if (this == o) return true;
|
if (this == o) {
|
||||||
if (o == null || getClass() != o.getClass()) return false;
|
return true;
|
||||||
|
}
|
||||||
|
if (o == null || getClass() != o.getClass()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
TransportData that = (TransportData) o;
|
TransportData that = (TransportData) o;
|
||||||
return Objects.equals(data, that.data);
|
return Objects.equals(data, that.data);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user