From a3c2974ff038e0272543e5cdab7909bb0d2c5017 Mon Sep 17 00:00:00 2001 From: Jason Curl Date: Sat, 1 Feb 2020 12:44:14 +0100 Subject: [PATCH] Config: Remove useless StyleSheet set property Issue: HELIOS-1349 --- CrashReporter/Config/StyleSheetElement.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/CrashReporter/Config/StyleSheetElement.cs b/CrashReporter/Config/StyleSheetElement.cs index cf1fe22..2a56f00 100644 --- a/CrashReporter/Config/StyleSheetElement.cs +++ b/CrashReporter/Config/StyleSheetElement.cs @@ -8,7 +8,6 @@ internal class StyleSheetElement : ConfigurationElement public string Name { get { return (string)this["name"]; } - set { this["name"] = value; } } } }