From d5fc0b227d794617076dc1d07bdc3d66377e2305 Mon Sep 17 00:00:00 2001 From: John Cortell Date: Tue, 8 Sep 2009 20:32:49 +0000 Subject: [PATCH] Fixed warning; forgot @Deprecated annotation --- .../src/org/eclipse/cdt/dsf/concurrent/DefaultDsfExecutor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/DefaultDsfExecutor.java b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/DefaultDsfExecutor.java index 522b3cf51b0..eec313c8f15 100644 --- a/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/DefaultDsfExecutor.java +++ b/dsf/org.eclipse.cdt.dsf/src/org/eclipse/cdt/dsf/concurrent/DefaultDsfExecutor.java @@ -299,7 +299,8 @@ public class DefaultDsfExecutor extends ScheduledThreadPoolExecutor /** * @deprecated use constructor that takes stack trace and ignore count */ - public TracingWrapperCallable(Callable callable, int frameIgnoreCount) { + @Deprecated + public TracingWrapperCallable(Callable callable, int frameIgnoreCount) { super(new StackTraceElement[0], 0); if (callable == null) throw new NullPointerException(); fCallable = callable;