minor formatting changes

This commit is contained in:
javanna 2015-11-16 10:28:29 +01:00 committed by Luca Cavanna
parent 082686d9c5
commit 5169d9d80f
2 changed files with 6 additions and 3 deletions

View File

@ -149,5 +149,4 @@ public final class ConfigurationUtils {
throw new IllegalArgumentException("property [" + propertyName + "] isn't a map, but of type [" + value.getClass().getName() + "]");
}
}
}

View File

@ -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);
}