public boolean equals()

in library/src/main/java/com/theguardian/bridget/thrift/Commercial.java [1500:1516]


    public boolean equals(updateAdverts_args that) {
      if (that == null)
        return false;
      if (this == that)
        return true;

      boolean this_present_adSlots = true && this.isSetAdSlots();
      boolean that_present_adSlots = true && that.isSetAdSlots();
      if (this_present_adSlots || that_present_adSlots) {
        if (!(this_present_adSlots && that_present_adSlots))
          return false;
        if (!this.adSlots.equals(that.adSlots))
          return false;
      }

      return true;
    }