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

    GutterActionRenderer that = (GutterActionRenderer) o;

    if (!myAction.equals(that.myAction)) return false;

    return true;
  }