public boolean equals()

in report-builder/src/jetbrains/coverage/report/impl/html/ModuleInfo.java [48:55]


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

    ModuleInfo that = (ModuleInfo) o;
    return !(myName != null ? !myName.equals(that.myName) : that.myName != null);

  }