Browse Source

2007-10-04 Atsushi Enomoto <[email protected]>

	* TypeStubManager.cs: reverted r82932 again. This #if ONLY_1_1 causes
	  NUnit test regressions. It should not be reverted again until
	  appropriate NUnit test case is provided and proper fix is provided
	  that does not cause regressions.


svn path=/trunk/mcs/; revision=86851
Atsushi Eno 18 years ago
parent
commit
7a4ff9289b

+ 7 - 0
mcs/class/System.Web.Services/System.Web.Services.Protocols/ChangeLog

@@ -1,3 +1,10 @@
+2007-10-04  Atsushi Enomoto  <[email protected]>
+
+	* TypeStubManager.cs: reverted r82932 again. This #if ONLY_1_1 causes
+	  NUnit test regressions. It should not be reverted again until
+	  appropriate NUnit test case is provided and proper fix is provided
+	  that does not cause regressions.
+
 2007-09-25  Marek Habersack  <[email protected]>
 
 	* WebServiceHandlerFactory.cs: WebServiceParser.GetCompiledType

+ 1 - 1
mcs/class/System.Web.Services/System.Web.Services.Protocols/TypeStubManager.cs

@@ -244,7 +244,7 @@ namespace System.Web.Services.Protocols {
 		public BindingInfo (WebServiceBindingAttribute at, string name, string ns)
 		{
 			if (at != null) {
-#if ONLY_1_1
+#if NET_1_1
 				Name = at.Name;
 #endif
 				Namespace = at.Namespace;