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
1 changed files with 1 additions and 1 deletions

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