Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2015-12-16 08:52:46 +0000
committerAlexander Kurtakov2015-12-16 09:30:56 +0000
commit2d775ffb7ea737731b67057265530d76c33efc80 (patch)
treebe944122e46b12df265120819ab310f4fb688c73 /valgrind
parent9eaeb4c5b780343b1017097532972342bfd7ce43 (diff)
downloadorg.eclipse.linuxtools-2d775ffb7ea737731b67057265530d76c33efc80.tar.gz
org.eclipse.linuxtools-2d775ffb7ea737731b67057265530d76c33efc80.tar.xz
org.eclipse.linuxtools-2d775ffb7ea737731b67057265530d76c33efc80.zip
Bug 482947 - Valgrind Message API's: get rid of launch dependency
Remove the deprecated method. It's internal class so there is no point to keep it and further it was generating warnings due to deprecation javadoc commend but missing all the parameters and etc. Change-Id: I24d67b7d65dded5f02f63c288ec3c8187874bba9 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com> Reviewed-on: https://git.eclipse.org/r/62787 Tested-by: Hudson CI
Diffstat (limited to 'valgrind')
-rw-r--r--valgrind/org.eclipse.linuxtools.valgrind.core/src/org/eclipse/linuxtools/internal/valgrind/core/ValgrindStackFrame.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/valgrind/org.eclipse.linuxtools.valgrind.core/src/org/eclipse/linuxtools/internal/valgrind/core/ValgrindStackFrame.java b/valgrind/org.eclipse.linuxtools.valgrind.core/src/org/eclipse/linuxtools/internal/valgrind/core/ValgrindStackFrame.java
index 73f2089905..2107ac5c52 100644
--- a/valgrind/org.eclipse.linuxtools.valgrind.core/src/org/eclipse/linuxtools/internal/valgrind/core/ValgrindStackFrame.java
+++ b/valgrind/org.eclipse.linuxtools.valgrind.core/src/org/eclipse/linuxtools/internal/valgrind/core/ValgrindStackFrame.java
@@ -20,17 +20,6 @@ public class ValgrindStackFrame extends AbstractValgrindMessage {
protected int line;
private ISourceLocator locator;
- /**
- * @deprecated use {@link #ValgrindStackFrame(IValgrindMessage, String, ILaunch, ISourceLocator, String, int)}
- */
- @Deprecated
- public ValgrindStackFrame(IValgrindMessage message, String text, ILaunch launch, String file, int line) {
- super(message, text, launch);
- this.file = file;
- this.line = line;
- this.locator = ValgrindCoreParser.copyLaunchSourceLocator(launch);
- }
-
public ValgrindStackFrame(IValgrindMessage message, String text, ILaunch launch, ISourceLocator locator, String file, int line) {
super(message, text, launch);
this.file = file;

Back to the top