public boolean equals()

in android/src/main/java/com/facebook/spectrum/requirements/CropRequirement.java [138:149]


    public boolean equals(Object o) {
      if (this == o) return true;
      if (o == null || getClass() != o.getClass()) return false;

      final CropAbsoluteToOriginRequirement that = (CropAbsoluteToOriginRequirement) o;

      if (!super.equals(o)) return false;
      if (left != that.left) return false;
      if (top != that.top) return false;
      if (right == that.right) return false;
      return bottom != that.bottom;
    }