Ver Fonte

2008-01-12 Sebastien Pouliot <[email protected]>

	* SettingsPropertyValue.cs: Fix typo. Found using Gendarme.


svn path=/trunk/mcs/; revision=92758
Sebastien Pouliot há 18 anos atrás
pai
commit
126013cbd9

+ 4 - 0
mcs/class/System/System.Configuration/ChangeLog

@@ -1,3 +1,7 @@
+2008-01-12  Sebastien Pouliot  <[email protected]>
+
+	* SettingsPropertyValue.cs: Fix typo. Found using Gendarme.
+
 2007-11-21  Atsushi Enomoto  <[email protected]>
 
 	* CustomizableFileSettingsProvider.cs : when a property is found

+ 1 - 1
mcs/class/System/System.Configuration/SettingsPropertyValue.cs

@@ -53,7 +53,7 @@ namespace System.Configuration
 				return deserialized;
 			}
 			set {
-				deserialized = true;
+				deserialized = value;
 			}
 		}