Polishing

This commit is contained in:
Juergen Hoeller
2014-10-01 01:10:25 +02:00
parent 44e29210cb
commit 3a3c52dbdd
6 changed files with 24 additions and 23 deletions

View File

@@ -249,8 +249,8 @@ public final class WebAsyncManager {
* @see #getConcurrentResult()
* @see #getConcurrentResultContext()
*/
@SuppressWarnings({"unchecked", "rawtypes" })
public void startCallableProcessing(final Callable<?> callable, Object... processingContext) throws Exception {
@SuppressWarnings({"unchecked", "rawtypes"})
public void startCallableProcessing(Callable<?> callable, Object... processingContext) throws Exception {
Assert.notNull(callable, "Callable must not be null");
startCallableProcessing(new WebAsyncTask(callable), processingContext);
}