summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/mono/files/fix-for-GitExtensions-issue-2710.patch')
-rw-r--r--dev-lang/mono/files/fix-for-GitExtensions-issue-2710.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/dev-lang/mono/files/fix-for-GitExtensions-issue-2710.patch b/dev-lang/mono/files/fix-for-GitExtensions-issue-2710.patch
deleted file mode 100644
index 3d60923d9714..000000000000
--- a/dev-lang/mono/files/fix-for-GitExtensions-issue-2710.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff --git a/mcs/class/System/System.Configuration/SettingsPropertyValue.cs b/mcs/class/System/System.Configuration/SettingsPropertyValue.cs
-index 9bf62c0..9f026461 100644
---- a/mcs/class/System/System.Configuration/SettingsPropertyValue.cs
-+++ b/mcs/class/System/System.Configuration/SettingsPropertyValue.cs
-@@ -118,11 +118,18 @@ namespace System.Configuration
- #if (XML_DEP)
- case SettingsSerializeAs.Xml:
- if (propertyValue != null) {
-- XmlSerializer serializer = new XmlSerializer (propertyValue.GetType ());
-- StringWriter w = new StringWriter(CultureInfo.InvariantCulture);
--
-- serializer.Serialize (w, propertyValue);
-- serializedValue = w.ToString();
-+ using (StringWriter w = new StringWriter(CultureInfo.InvariantCulture))
-+ {
-+ var xmlSettings = new XmlWriterSettings();
-+ xmlSettings.OmitXmlDeclaration = true;
-+ using (var writer = XmlWriter.Create(w, xmlSettings))
-+ {
-+ XmlSerializer serializer = new XmlSerializer(propertyValue.GetType ());
-+ var emptyNamespaces = new XmlSerializerNamespaces(new[] { XmlQualifiedName.Empty });
-+ serializer.Serialize(writer, propertyValue, emptyNamespaces);
-+ } // writer.Flush happens here
-+ serializedValue = w.ToString();
-+ }
- }
- else
- serializedValue = null;