lttng : Remove inefficient new String(String) constructor
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.core / src / org / eclipse / tracecompass / internal / lttng2 / ust / core / analysis / debuginfo / UstDebugInfoBinaryFile.java
index ef5a7d9bdadce12ebdd587259942260b5e2f8ae6..617c577d8d2702799a158f66a62751bd1862fa1b 100644 (file)
@@ -33,7 +33,7 @@ public class UstDebugInfoBinaryFile implements Comparable<UstDebugInfoBinaryFile
     public UstDebugInfoBinaryFile(String filePath, String buildId) {
         fFilePath = filePath;
         fBuildId = buildId;
-        fToString = new String(filePath + " (" + buildId + ')'); //$NON-NLS-1$
+        fToString = filePath + " (" + buildId + ')'; //$NON-NLS-1$
     }
 
     /**
This page took 0.036888 seconds and 5 git commands to generate.