in sample-app/backend/src/main/java/co/elastic/apm/android/sample/backend/data/CurrentWeatherResponse.java [13:18]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
CurrentWeatherResponse that = (CurrentWeatherResponse) o;
return Double.compare(that.temperature, temperature) == 0;
}