Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2020-10-05 08:45:06 +0000
committerLars Vogel2020-10-09 10:05:00 +0000
commit84dda3f422859d49d2ef2394ad6efa2cc29b2602 (patch)
tree3a42c29c57af03e51c3615fddbb13c436d6cc536
parent7a711982ff599842f6c049d59d58f2fbc2bd4eb3 (diff)
downloadeclipse.platform.debug-Y20201019-1200.tar.gz
eclipse.platform.debug-Y20201019-1200.tar.xz
eclipse.platform.debug-Y20201019-1200.zip
Change-Id: I6ebb97a0eb4550f8be3382044c8e882f3c27f089 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/ui/BuilderPropertyPage.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/ui/BuilderPropertyPage.java b/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/ui/BuilderPropertyPage.java
index 439b641f3..2bee78fc2 100644
--- a/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/ui/BuilderPropertyPage.java
+++ b/org.eclipse.ui.externaltools/External Tools Base/org/eclipse/ui/externaltools/internal/ui/BuilderPropertyPage.java
@@ -939,9 +939,7 @@ public final class BuilderPropertyPage extends PropertyPage implements ICheckSta
IProgressService service= PlatformUI.getWorkbench().getProgressService();
try {
service.busyCursorWhile(runnable);
- } catch (InvocationTargetException e) {
- return false;
- } catch (InterruptedException e) {
+ } catch (InvocationTargetException | InterruptedException e) {
return false;
}
return super.performOk();

Back to the top