1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 09:46:02 +02:00

Fixed warning; forgot @Deprecated annotation

This commit is contained in:
John Cortell 2009-09-08 20:32:49 +00:00
parent b2f577471c
commit d5fc0b227d

View file

@ -299,7 +299,8 @@ public class DefaultDsfExecutor extends ScheduledThreadPoolExecutor
/**
* @deprecated use constructor that takes stack trace and ignore count
*/
public TracingWrapperCallable(Callable<T> callable, int frameIgnoreCount) {
@Deprecated
public TracingWrapperCallable(Callable<T> callable, int frameIgnoreCount) {
super(new StackTraceElement[0], 0);
if (callable == null) throw new NullPointerException();
fCallable = callable;