Skip to content
This repository was archived by the owner on Dec 12, 2024. It is now read-only.

Commit 85c9d01

Browse files
Didn't like the nullable autosymprefix
1 parent 64deb0a commit 85c9d01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SwiftReflector/Naming/ScopedNaming.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ public class ScopedNaming
1111
string autoSymPrefix;
1212
Stack<HashSet<string>> names = new Stack<HashSet<string>> ();
1313

14-
public ScopedNaming (string? autoSymPrefix = null)
14+
public ScopedNaming (string autoSymPrefix = "_symbol")
1515
{
16-
this.autoSymPrefix = string.IsNullOrEmpty (autoSymPrefix) ? "_symbol" : autoSymPrefix;
16+
this.autoSymPrefix = autoSymPrefix;
1717
names.Push (new HashSet<string> ());
1818
}
1919

0 commit comments

Comments
 (0)