Fix assignment error in AbstractAsyncExecutionAspect
Issue: SPR-8772
This commit is contained in:
parent
5360bd899d
commit
dacfa6993a
|
|
@ -45,7 +45,7 @@ public abstract aspect AbstractAsyncExecutionAspect {
|
||||||
this.asyncExecutor = (AsyncTaskExecutor) executor;
|
this.asyncExecutor = (AsyncTaskExecutor) executor;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
this.asyncExecutor = new TaskExecutorAdapter(asyncExecutor);
|
this.asyncExecutor = new TaskExecutorAdapter(executor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue