public boolean equals()

in agent/src/jetbrains/buildServer/xmlReportPlugin/inspections/InspectionResult.java [53:65]


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

    final InspectionResult that = (InspectionResult)o;

    if (myLine != that.myLine) return false;
    if (myPriority != that.myPriority) return false;
    if (myFilePath != null ? !myFilePath.equals(that.myFilePath) : that.myFilePath != null) return false;
    if (myInspectionId != null ? !myInspectionId.equals(that.myInspectionId) : that.myInspectionId != null) return false;
    return !(myMessage != null ? !myMessage.equals(that.myMessage) : that.myMessage != null);

  }