in library/src/main/java/com/theguardian/bridget/thrift/Tag.java [2313:2329]
public boolean equals(isFollowing_args that) {
if (that == null)
return false;
if (this == that)
return true;
boolean this_present_topic = true && this.isSetTopic();
boolean that_present_topic = true && that.isSetTopic();
if (this_present_topic || that_present_topic) {
if (!(this_present_topic && that_present_topic))
return false;
if (!this.topic.equals(that.topic))
return false;
}
return true;
}