releng: Don't use Guava references that will be removed in Guava 21.0
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.core / src / org / eclipse / tracecompass / lttng2 / ust / core / analysis / debuginfo / UstDebugInfoBinaryFile.java
index 3a189c56dff4d1ffb39b2ea33df6d9e49888292e..0a72264ca2dd65936d00e234c558ea30881e4df9 100644 (file)
@@ -11,6 +11,7 @@ package org.eclipse.tracecompass.lttng2.ust.core.analysis.debuginfo;
 
 import java.util.Objects;
 
+import org.apache.commons.lang3.builder.ToStringBuilder;
 import org.eclipse.jdt.annotation.Nullable;
 
 /**
@@ -95,11 +96,11 @@ public class UstDebugInfoBinaryFile implements Comparable<UstDebugInfoBinaryFile
 
     @Override
     public String toString() {
-        return com.google.common.base.Objects.toStringHelper(this)
-            .add("path", fFilePath) //$NON-NLS-1$
-            .add("build_id", fBuildId) //$NON-NLS-1$
-            .add("debug_link", fDebugLink) //$NON-NLS-1$
-            .add("is_pic", fIsPic) //$NON-NLS-1$
+        return new ToStringBuilder(this)
+            .append("path", fFilePath) //$NON-NLS-1$
+            .append("build_id", fBuildId) //$NON-NLS-1$
+            .append("debug_link", fDebugLink) //$NON-NLS-1$
+            .append("is_pic", fIsPic) //$NON-NLS-1$
             .toString();
     }
 
This page took 0.025343 seconds and 5 git commands to generate.