Skip to content

Commit

Permalink
2005-09-21 Atsushi Enomoto <atsushi@ximian.com>
Browse files Browse the repository at this point in the history
	* CompareInfo.cs : switched to "managed collation by default" mode.


svn path=/trunk/mcs/; revision=50415
  • Loading branch information
atsushieno committed Sep 21, 2005
1 parent c9ad864 commit b1f8929
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions mcs/class/corlib/System.Globalization/ChangeLog
@@ -1,3 +1,7 @@
2005-09-21 Atsushi Enomoto <atsushi@ximian.com>

* CompareInfo.cs : switched to "managed collation by default" mode.

2005-08-30 Sebastien Pouliot <sebastien@ximian.com>

* CompareInfo.cs: Use Environment.internalGetEnvironmentVariable as
Expand Down
4 changes: 2 additions & 2 deletions mcs/class/corlib/System.Globalization/CompareInfo.cs
Expand Up @@ -42,8 +42,8 @@ namespace System.Globalization
public class CompareInfo : IDeserializationCallback
{
static readonly bool useManagedCollation =
Environment.internalGetEnvironmentVariable ("MONO_USE_MANAGED_COLLATION")
== "yes";
Environment.internalGetEnvironmentVariable ("MONO_DISABLE_MANAGED_COLLATION")
!= "yes";

internal static bool UseManagedCollation {
get { return useManagedCollation && MSCompatUnicodeTable.IsReady; }
Expand Down

0 comments on commit b1f8929

Please sign in to comment.