in rest/src/main/java/com/epam/eco/schemacatalog/rest/view/TagDescription.java [66:75]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
TagDescription that = (TagDescription) o;
return Objects.equals(name, that.name) &&
Objects.equals(paramNames, that.paramNames) &&
Objects.equals(paramTypes, that.paramTypes) &&
Objects.equals(template, that.template) &&
Objects.equals(description, that.description);
}