Commit fb4926e3 authored by Vassiliy.Kudryashov's avatar Vassiliy.Kudryashov
Browse files

Cleanup

parent 69e838ea
No related merge requests found
Showing with 1 addition and 7 deletions
+1 -7
......@@ -50,7 +50,6 @@ import org.jetbrains.annotations.NonNls;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.awt.*;
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.TimeUnit;
......@@ -77,12 +76,7 @@ public final class ExecutionHandler {
);
if (result != null) {
try {
long l = System.currentTimeMillis();
try {
return result.get();
} finally {
new Throwable(EventQueue.isDispatchThread() + ": " + (System.currentTimeMillis() - l)).printStackTrace(System.out);
}
return result.get();
}
catch (InterruptedException | java.util.concurrent.ExecutionException e) {
LOG.warn(e);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment