catching and ignoring UnsupportedOperationException when executing

reasoner
Esse commit está contido em:
Yevgeny Kazakov
2015-03-18 19:39:15 +01:00
commit b5f9b587c9
@@ -116,9 +116,10 @@ public class DisplayedInferencePreferences {
if (isShowInferences() && isEnabled(task)) {
startClock(task);
try {
implementation.run();
}
finally {
implementation.run();
} catch (UnsupportedOperationException ignore) {
} finally {
stopClock(task);
}
}