Merge pull request #2227 from esdrubal/tzparse
[mono.git] / mcs / class / System.Web / System.Web / WebCategoryAttribute.cs
index 964a82736ba31ea86b6220a22674b778dd14b873..7cc3b0789b1bf9d3abee69f6f4106ca4162efdf8 100644 (file)
@@ -1,14 +1,10 @@
 //
-// System.Web.WebCategoryAttribute.cs
+// System.Web.WebCategoryAttribute class
 //
-// Authors:
-//   Gaurav Vaish (gvaish@iitk.ac.in)
-//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
+// Author:
+//     Sebastien Pouliot  <sebastien@ximian.com>
 //
-// (C) Gaurav Vaish (2002)
-// (C) 2003 Andreas Nahr
-//
-
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-\r
-using System;\r
-using System.ComponentModel;\r
-\r
-namespace System.Web\r
-{\r
-       [AttributeUsage(AttributeTargets.All)]\r
-       internal sealed class WebCategoryAttribute : CategoryAttribute\r
-       {\r
-               public WebCategoryAttribute (string category)
-                       : base (category)\r
-               {\r
-               }\r
-\r
-               protected override string GetLocalizedString (string value)\r
+
+using System.ComponentModel;
+namespace System.Web {
+
+       [AttributeUsage(AttributeTargets.All)]
+       internal class WebCategoryAttribute : CategoryAttribute {
+
+               public WebCategoryAttribute (string category) : base (category)
                {
-                       return Locale.GetText (value);\r
-               }\r
-       }\r
-}\r
+               }
+       }
+}