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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2018-06-24 15:22:35 +0300
committerStephen Toub <stoub@microsoft.com>2018-06-24 16:53:22 +0300
commitc7cae6d5246d3aaf3f7ea6d100ee792ff796a0ce (patch)
tree7b8de04914024dc568851a9e3f0f9bbefa50d62e /src/System.Private.CoreLib/shared/System/Globalization/TextInfo.cs
parent450de75f4eb620ac676414563311c29ddab00d76 (diff)
Simply type names in Corelib (dotnet-maestro-bot/coreclr#18623)
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/Globalization/TextInfo.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Globalization/TextInfo.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Globalization/TextInfo.cs b/src/System.Private.CoreLib/shared/System/Globalization/TextInfo.cs
index 4906bedff..c5f392cb0 100644
--- a/src/System.Private.CoreLib/shared/System/Globalization/TextInfo.cs
+++ b/src/System.Private.CoreLib/shared/System/Globalization/TextInfo.cs
@@ -76,7 +76,7 @@ namespace System.Globalization
FinishInitialization();
}
- void IDeserializationCallback.OnDeserialization(Object sender)
+ void IDeserializationCallback.OnDeserialization(object sender)
{
throw new PlatformNotSupportedException();
}
@@ -612,7 +612,7 @@ namespace System.Globalization
// or not object refers to the same CultureInfo as the current instance.
//
////////////////////////////////////////////////////////////////////////
- public override bool Equals(Object obj)
+ public override bool Equals(object obj)
{
TextInfo that = obj as TextInfo;