backported TaskExecutorAdapter fix (SPR-8772)

This commit is contained in:
Juergen Hoeller
2011-12-01 13:04:55 +00:00
parent cad5eb836c
commit 0150000d8b

View File

@@ -45,7 +45,7 @@ public abstract aspect AbstractAsyncExecutionAspect {
this.asyncExecutor = (AsyncTaskExecutor) executor;
}
else {
this.asyncExecutor = new TaskExecutorAdapter(asyncExecutor);
this.asyncExecutor = new TaskExecutorAdapter(executor);
}
}