Browse Source

2004-01-11 Andreas Nahr <[email protected]>

	* WebEqualComparer.cs:
	* WebHashCodeProvider.cs:
	* FileAction.cs:
	* FileChangeEventHandler.cs:
	* NativeFileChangeEventHandler.cs: Monostyled header, internalized

svn path=/trunk/mcs/; revision=21939
Andreas N 22 years ago
parent
commit
ebcccebf55

+ 8 - 0
mcs/class/System.Web/System.Web.Util/ChangeLog

@@ -1,3 +1,11 @@
+2004-01-11  Andreas Nahr <[email protected]>
+
+	* WebEqualComparer.cs:
+	* WebHashCodeProvider.cs:
+	* FileAction.cs:
+	* FileChangeEventHandler.cs:
+	* NativeFileChangeEventHandler.cs: Monostyled header, internalized
+
 2004-01-09  Gonzalo Paniagua Javier <[email protected]>
 
 	* UrlUtils.cs: make reduce not to throw an exception for '../'. Fixes

+ 9 - 13
mcs/class/System.Web/System.Web.Util/FileAction.cs

@@ -1,19 +1,15 @@
-/**
- * Namespace: System.Web.Util
- * Class:     FileAction
- *
- * Author:  Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status:  ??%
- *
- * (C) Gaurav Vaish (2001)
- */
+//
+// System.Web.Util.FileAction.cs
+//
+// Authors:
+//   Gaurav Vaish ([email protected], [email protected])
+//
+// (c) Gaurav Vaish 2001
+//
 
 namespace System.Web.Util
 {
-	public enum FileAction
+	internal enum FileAction
 	{
 		Overwhleming,
 		Added,

+ 9 - 13
mcs/class/System.Web/System.Web.Util/FileChangeEventHandler.cs

@@ -1,17 +1,13 @@
-/**
- * Namespace: System.Web.Util
- * Class:     FileChangeEventHandler
- *
- * Author:  Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status:  100%
- *
- * (C) Gaurav Vaish (2001)
- */
+//
+// System.Web.Util.FileChangeEventHandler.cs
+//
+// Authors:
+//   Gaurav Vaish ([email protected], [email protected])
+//
+// (c) Gaurav Vaish 2001
+//
 
 namespace System.Web.Util
 {
-	public delegate void FileChangeEventHandler(object sender, int method);
+	internal delegate void FileChangeEventHandler(object sender, int method);
 }

+ 9 - 13
mcs/class/System.Web/System.Web.Util/NativeFileChangeEventHandler.cs

@@ -1,17 +1,13 @@
-/**
- * Namespace: System.Web.Util
- * Class:     NativeFileChangeEventHandler
- *
- * Author:  Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status:  100%
- *
- * (C) Gaurav Vaish (2001)
- */
+//
+// System.Web.Util.NativeFileChangeEventHandler.cs
+//
+// Authors:
+//   Gaurav Vaish ([email protected], [email protected])
+//
+// (c) Gaurav Vaish 2001
+//
 
 namespace System.Web.Util
 {
-	public delegate void NativeFileChangeEventHandler(object sender, int method);
+	internal delegate void NativeFileChangeEventHandler(object sender, int method);
 }

+ 9 - 13
mcs/class/System.Web/System.Web.Util/WebEqualComparer.cs

@@ -1,15 +1,11 @@
-/**
- * Namespace: System.Web.Util
- * Class:     WebEqualComparer
- *
- * Author:  Gaurav Vaish
- * Maintainer: [email protected]
- * Contact: <[email protected]>, <[email protected]>
- * Implementation: yes
- * Status:  ??%
- *
- * (C) Gaurav Vaish (2001)
- */
+//
+// System.Web.Util.WebEqualComparer.cs
+//
+// Authors:
+//   Gaurav Vaish ([email protected], [email protected])
+//
+// (c) Gaurav Vaish 2001
+//
 
 using System;
 using System.Globalization;
@@ -17,7 +13,7 @@ using System.Collections;
 
 namespace System.Web.Util
 {
-	public class WebEqualComparer : IComparer
+	internal class WebEqualComparer : IComparer
 	{
 		private static IComparer defC;
 

+ 9 - 23
mcs/class/System.Web/System.Web.Util/WebHashCodeProvider.cs

@@ -1,32 +1,18 @@
-/**
-
- * Namespace: System.Web.Util
- * Class:     WebHashCodeProvider
- *
-
- * Author:  Gaurav Vaish
-
- * Maintainer: [email protected]
-
- * Contact: <[email protected]>, <[email protected]>
-
- * Implementation: yes
-
- * Status:  ??%
-
- *
-
- * (C) Gaurav Vaish (2001)
-
- */
-
+//
+// System.Web.Util.WebHashCodeProvider.cs
+//
+// Authors:
+//   Gaurav Vaish ([email protected], [email protected])
+//
+// (c) Gaurav Vaish 2001
+//
 
 using System.Collections;
 using System.Globalization;
 
 namespace System.Web.Util
 {
-	public class WebHashCodeProvider : IHashCodeProvider
+	internal class WebHashCodeProvider : IHashCodeProvider
 	{
 		private static IHashCodeProvider defHcp;