Skip to content

Commit cfea890

Browse files
authored
Fix one extra allocation on MethodMirror.FullName
1 parent 2d784fb commit cfea890

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Mono.Debugger.Soft/Mono.Debugger.Soft/MethodMirror.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public string FullName {
5959
sb.Append (ReturnType.Name);
6060
sb.Append (' ');
6161
if (type_namespace != String.Empty)
62-
sb.Append (type_namespace + ".");
62+
sb.Append (type_namespace).Append (".");
6363
sb.Append(type_name);
6464
sb.Append(":");
6565
sb.Append(Name);

0 commit comments

Comments
 (0)