Skip to content

Commit 0ab3be8

Browse files
committed
Replace "" with string.Empty
1 parent 52afae2 commit 0ab3be8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rubberduck.Parsing/Symbols/Declaration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ public string AsTypeNameWithoutArrayDesignator
478478
{
479479
return AsTypeName;
480480
}
481-
return AsTypeName.Replace("(", "").Replace(")", "").Trim();
481+
return AsTypeName.Replace("(", string.Empty).Replace(")", string.Empty).Trim();
482482
}
483483
}
484484

0 commit comments

Comments
 (0)