Skip to content

Commit

Permalink
Updated to Java commit 5b3eb2b (2011-10-07): prepare release clojure-…
Browse files Browse the repository at this point in the history
…1.4.0-alpha1
  • Loading branch information
dmiller committed Nov 17, 2011
1 parent d7d48e1 commit 83987ab
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Clojure/Clojure/Lib/Util.cs
Expand Up @@ -107,6 +107,11 @@ public static bool equiv(bool x, object y)
return equiv((object)x, y);
}

[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "equiv")]
public static bool equiv(char x, char y)
{
return x == y;
}


[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "pcequiv")]
Expand Down

0 comments on commit 83987ab

Please sign in to comment.