This commit is contained in:
schilcher
2016-10-24 15:08:44 +02:00
parent f6693b081b
commit 851047aa13
6 changed files with 47 additions and 21 deletions

View File

@@ -261,7 +261,12 @@ public class Correlation extends Panel {
args.put("bs", checkBS.isSelected());
args.put("p", plot);
runAsync("Correlation/Correlation", args);
runAsync("Correlation/Correlation", args).handle((ok, ex) -> {
if (ex != null) {
ex.printStackTrace();
}
return ok;
});
} catch (Exception ex) {
showException(ex);