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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas N <andreas@mono-cvs.ximian.com>2003-07-18 23:18:10 +0400
committerAndreas N <andreas@mono-cvs.ximian.com>2003-07-18 23:18:10 +0400
commit78e4f6a5e8fb827f7469726d570011ea41ce074b (patch)
tree68d63f454bdd24568d471e723e1ef116d6431598
parent65d1a7ac2f246c14daa703ed0a5dbdb266431f83 (diff)
Locale.cs removed
svn path=/trunk/mcs/; revision=16414
-rwxr-xr-xmcs/class/System.Data/System.Data/Locale.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/mcs/class/System.Data/System.Data/Locale.cs b/mcs/class/System.Data/System.Data/Locale.cs
deleted file mode 100755
index 539184dbde4..00000000000
--- a/mcs/class/System.Data/System.Data/Locale.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//
-// System.Globalization.Locale.cs
-//
-// Author:
-// Miguel de Icaza (miguel@ximian.com)
-//
-// (C) 2001 Ximian, Inc (http://www.ximian.com)
-//
-
-namespace System.Globalization {
-
- internal class Locale {
-
- /// <summary>
- /// Returns the translated message for the current locale
- /// </summary>
- public static string GetText (string msg)
- {
- return msg;
- }
- }
-}