Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'profiling/org.eclipse.linuxtools.binutils/src/org/eclipse/linuxtools/binutils/utils/STAddr2LineFactory.java')
-rw-r--r--profiling/org.eclipse.linuxtools.binutils/src/org/eclipse/linuxtools/binutils/utils/STAddr2LineFactory.java48
1 files changed, 24 insertions, 24 deletions
diff --git a/profiling/org.eclipse.linuxtools.binutils/src/org/eclipse/linuxtools/binutils/utils/STAddr2LineFactory.java b/profiling/org.eclipse.linuxtools.binutils/src/org/eclipse/linuxtools/binutils/utils/STAddr2LineFactory.java
index d66ba1c7c8..cbc8bb5395 100644
--- a/profiling/org.eclipse.linuxtools.binutils/src/org/eclipse/linuxtools/binutils/utils/STAddr2LineFactory.java
+++ b/profiling/org.eclipse.linuxtools.binutils/src/org/eclipse/linuxtools/binutils/utils/STAddr2LineFactory.java
@@ -8,31 +8,31 @@
* Contributors:
* Xavier Raynaud <xavier.raynaud@st.com> - initial API and implementation
*******************************************************************************/
-package org.eclipse.linuxtools.binutils.utils;
+package org.eclipse.linuxtools.binutils.utils;
-import java.io.IOException;
-
-import org.eclipse.cdt.utils.Addr2line;
+import java.io.IOException;
+
+import org.eclipse.cdt.utils.Addr2line;
import org.eclipse.core.resources.IProject;
-
-
-
-/**
- * addr2line factory for all toolsets.
- *
- * @author Xavier Raynaud <xavier.raynaud@st.com>
- */
-public class STAddr2LineFactory {
-
- /**
- * @param cpuType
- * @param programPath
- * @return an instance of addr2line for the given program
- * @throws IOException
- */
- public static Addr2line getAddr2line(String cpuType, String programPath) throws IOException {
+
+
+
+/**
+ * addr2line factory for all toolsets.
+ *
+ * @author Xavier Raynaud <xavier.raynaud@st.com>
+ */
+public class STAddr2LineFactory {
+
+ /**
+ * @param cpuType
+ * @param programPath
+ * @return an instance of addr2line for the given program
+ * @throws IOException
+ */
+ public static Addr2line getAddr2line(String cpuType, String programPath) throws IOException {
return getAddr2line(cpuType, programPath, null);
- }
+ }
/**
* @param cpuType
@@ -45,5 +45,5 @@ public class STAddr2LineFactory {
ISTBinutilsFactory factory = STBinutilsFactoryManager.sharedInstance.getBinutilsFactory(cpuType);
return factory.getAddr2line(programPath, project);
}
-
-}
+
+}

Back to the top