Fix assignment error in AbstractAsyncExecutionAspect

Issue: SPR-8772
This commit is contained in:
Chris Beams
2011-10-17 18:35:27 +00:00
parent 5360bd899d
commit dacfa6993a

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);
}
}