Fixed ReportMessage equals() which broke repetition checking

This commit is contained in:
Vhati 2013-08-26 18:41:02 -04:00
parent c9b5c38368
commit 2405b73a28
2 changed files with 2 additions and 2 deletions

View file

@ -212,7 +212,7 @@ public class Report {
if ( o instanceof ReportMessage == false ) return false;
ReportMessage other = (ReportMessage)o;
if ( this.type != other.type ) return false;
if ( this.text.equals(other.text) ) return false;
if ( !this.text.equals(other.text) ) return false;
if ( this.nestedMessages == null ) {
if ( other.nestedMessages != null )