summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago Fernandez Madero <safern@microsoft.com>2019-05-24 12:00:48 -0700
committerSantiago Fernandez Madero <safern@microsoft.com>2019-05-24 12:00:48 -0700
commit75c8c865ea12b079df314d3a14a614bb5e243972 (patch)
tree0a49e52f98f6f9c5b252d2fe6a31d767041a814d
parent06de1100c25eb38e94334054b7176f1baf7e1263 (diff)
downloadcoreclr-75c8c865ea12b079df314d3a14a614bb5e243972.tar.gz
coreclr-75c8c865ea12b079df314d3a14a614bb5e243972.tar.bz2
coreclr-75c8c865ea12b079df314d3a14a614bb5e243972.zip
PR Feedback
-rw-r--r--src/System.Private.CoreLib/src/System/RuntimeHandles.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/src/System/RuntimeHandles.cs b/src/System.Private.CoreLib/src/System/RuntimeHandles.cs
index 242f3988bd..ae170d00ff 100644
--- a/src/System.Private.CoreLib/src/System/RuntimeHandles.cs
+++ b/src/System.Private.CoreLib/src/System/RuntimeHandles.cs
@@ -68,11 +68,11 @@ namespace System
return type;
}
- public static bool operator ==(RuntimeTypeHandle left, object right) { return left.Equals(right); }
+ public static bool operator ==(RuntimeTypeHandle left, object? right) { return left.Equals(right); }
public static bool operator ==(object? left, RuntimeTypeHandle right) { return right.Equals(left); }
- public static bool operator !=(RuntimeTypeHandle left, object right) { return !left.Equals(right); }
+ public static bool operator !=(RuntimeTypeHandle left, object? right) { return !left.Equals(right); }
public static bool operator !=(object? left, RuntimeTypeHandle right) { return !right.Equals(left); }