Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJb Evain <jbevain@gmail.com>2015-06-01 16:49:42 +0300
committerJb Evain <jbevain@gmail.com>2015-06-01 16:49:42 +0300
commit0e4cc0a5da0648c12a6362f8c3fad73605abf04c (patch)
tree2342446023c8797509081e88a5a85694241d92c6
parent9c98d265a1f22b0e331d8b08af9683c3faf62cb7 (diff)
Remove Object prefix
-rw-r--r--Mono.Cecil/Import.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Mono.Cecil/Import.cs b/Mono.Cecil/Import.cs
index fa5a979..9a33d09 100644
--- a/Mono.Cecil/Import.cs
+++ b/Mono.Cecil/Import.cs
@@ -772,7 +772,7 @@ namespace Mono.Cecil {
private static bool Equals (byte [] a, byte [] b)
{
- if (Object.ReferenceEquals (a, b))
+ if (ReferenceEquals (a, b))
return true;
if (a == null)
return false;
@@ -786,7 +786,7 @@ namespace Mono.Cecil {
private static bool Equals<T> (T a, T b) where T : class, IEquatable<T>
{
- if (Object.ReferenceEquals (a, b))
+ if (ReferenceEquals (a, b))
return true;
if (a == null)
return false;
@@ -795,7 +795,7 @@ namespace Mono.Cecil {
private static bool Equals (AssemblyNameReference a, AssemblyNameReference b)
{
- if (Object.ReferenceEquals (a, b))
+ if (ReferenceEquals (a, b))
return true;
if (a.Name != b.Name)
return false;