From a4278938393162c64205fd4acb32780f7952def3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Karlas=CC=8C?= Date: Fri, 16 Jun 2017 08:17:00 +0200 Subject: Fix one extra allocation on MethodMirror.FullName https://github.com/mono/debugger-libs/commit/cfea89011ef690fe2cd9fefccf6b34ee1d4b1584 --- mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/MethodMirror.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mcs/class/Mono.Debugger.Soft') diff --git a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/MethodMirror.cs b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/MethodMirror.cs index fb10f7117c3..24c247285cd 100644 --- a/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/MethodMirror.cs +++ b/mcs/class/Mono.Debugger.Soft/Mono.Debugger.Soft/MethodMirror.cs @@ -59,7 +59,7 @@ namespace Mono.Debugger.Soft sb.Append (ReturnType.Name); sb.Append (' '); if (type_namespace != String.Empty) - sb.Append (type_namespace + "."); + sb.Append (type_namespace).Append ("."); sb.Append(type_name); sb.Append(":"); sb.Append(Name); -- cgit v1.2.3