Skip to content

Commit c7004dd

Browse files
committed
Clean up after merge botch.
1 parent 2867b5c commit c7004dd

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

Save In Companion/MenuEntry.cs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,9 @@ namespace Save_In_Companion
1212
/// </summary>
1313
public class MenuEntry
1414
{
15-
//Hack: Replacing - with spaces to avoid a bug that is within the current version of Save In which does not like -'s after the path.
16-
//Doing this in a dirty way to make it easy to rip out later, if and when the bug gets fixed.
17-
private string name;
18-
private string comment;
15+
public string Name { get; set; }
1916

20-
public string Name { get { return name; } set { name = value.Replace('-', ' '); } }
21-
22-
public string Comment { get { return comment; } set { comment = value.Replace('-', ' '); } }
17+
public string Comment { get; set; }
2318

2419
public string FolderPath { get; set; }
2520

0 commit comments

Comments
 (0)