in java/src/main/java/com/twitter/twittertext/TwitterTextConfiguration.java [211:224]
public boolean equals(@Nullable Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final TwitterTextConfiguration that = (TwitterTextConfiguration) o;
return version == that.version && maxWeightedTweetLength == that.maxWeightedTweetLength &&
scale == that.scale && defaultWeight == that.defaultWeight &&
emojiParsingEnabled == that.emojiParsingEnabled &&
transformedURLLength == that.transformedURLLength && ranges.equals(that.ranges);
}