Skip to content

Commit 3cacf40

Browse files
committed
Remove Setting.StringValueTrimmed
1 parent 1593bc2 commit 3cacf40

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

Src/Setting.cs

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -41,24 +41,6 @@ public Setting(string name, object value) : base(name)
4141
/// </summary>
4242
public bool IsEmpty => string.IsNullOrEmpty(RawValue);
4343

44-
/// <summary>
45-
/// Gets the value of this setting as a <see cref="string"/>, with quotes removed if present.
46-
/// </summary>
47-
[Obsolete("Use StringValue instead")]
48-
public string StringValueTrimmed
49-
{
50-
get {
51-
string value = StringValue;
52-
53-
if (value[0] == '\"')
54-
{
55-
value = value.Trim('\"');
56-
}
57-
58-
return value;
59-
}
60-
}
61-
6244
/// <summary>
6345
/// Gets or sets the raw value of this setting.
6446
/// </summary>

0 commit comments

Comments
 (0)