public boolean equals()

in core/src/main/java/com/spotify/missinglink/datamodel/ArtifactName.java [55:66]


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

    ArtifactName that = (ArtifactName) o;

    return name.equals(that.name);
  }