public override bool Equals(object o) { if (this == o) { return(true); } if (o == null || this.GetType() != o.GetType()) { return(false); } if (!base.Equals(o)) { return(false); } RaftMessages_LogCompactionInfo other = ( RaftMessages_LogCompactionInfo )o; return(LeaderTermConflict == other.LeaderTermConflict && PrevIndexConflict == other.PrevIndexConflict); }
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#: //ORIGINAL LINE: public T handle(RaftMessages_LogCompactionInfo logCompactionInfo) throws E public override T Handle(RaftMessages_LogCompactionInfo logCompactionInfo) { return(default(T)); }