Ver Fonte

XmlSerializer.cs: fixed a typo - wrong TARGET_JVM condition

svn path=/trunk/mcs/; revision=42752
Andrew Skiba há 21 anos atrás
pai
commit
d2d0b0ff38

+ 4 - 0
mcs/class/System.XML/System.Xml.Serialization/ChangeLog

@@ -1,3 +1,7 @@
+2004-04-10  Andrew Skiba  <[email protected]>
+
+	* XmlSerializer.cs: fixed a typo - wrong TARGET_JVM condition.
+
 2004-04-03  Andrew Skiba  <[email protected]>
 
 	* XmlSerializer.cs: added TARGET_JVM that does not support on-the-fly

+ 1 - 1
mcs/class/System.XML/System.Xml.Serialization/XmlSerializer.cs

@@ -102,7 +102,7 @@ namespace System.Xml.Serialization
 		static XmlSerializer ()
 		{
 			
-#if !TARGET_JVM
+#if TARGET_JVM
 			string db = null;
 			string th = null;
 			generationThreshold = -1;