mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Fixed warning; forgot @Deprecated annotation
This commit is contained in:
parent
b2f577471c
commit
d5fc0b227d
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue