Fix unnecessary @SupressWarnings annotations

This commit is contained in:
Phillip Webb
2013-01-29 15:37:25 -08:00
parent 2b0d860923
commit d89e30b864
20 changed files with 3 additions and 25 deletions

View File

@@ -87,7 +87,6 @@ public class SimpleApplicationEventMulticaster extends AbstractApplicationEventM
Executor executor = getTaskExecutor();
if (executor != null) {
executor.execute(new Runnable() {
@SuppressWarnings("unchecked")
public void run() {
listener.onApplicationEvent(event);
}