in thumbnails4j-core/src/main/java/co/elastic/thumbnails4j/core/Dimensions.java [112:120]
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof Dimensions)) return false;
Dimensions that = (Dimensions) o;
if (getX() != that.getX()) return false;
return getY() == that.getY();
}