Skip to content
This repository has been archived by the owner on May 27, 2023. It is now read-only.

Commit

Permalink
fixed protected keyword in sealed class
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsided committed Jan 24, 2015
1 parent dec2772 commit 9f9a1e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PDDL/Model/Pddl12/Requirement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public Requirement([NotNull] string value)
/// </summary>
/// <param name="other">The object to compare with the current object.</param>
/// <returns><see langword="true" /> if the specified <see cref="Requirement" /> is equal to this instance; otherwise, <see langword="false" />.</returns>
protected bool Equals(Requirement other)
private bool Equals(Requirement other)
{
return string.Equals(Value, other.Value, StringComparison.OrdinalIgnoreCase);
}
Expand Down

0 comments on commit 9f9a1e2

Please sign in to comment.