Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Ungemach2018-12-20 09:21:36 +0000
committerMatthias Becker2018-12-20 15:20:57 +0000
commitdf761f8f57efe71443625ed3efa1455ad74b5ebf (patch)
tree076215e931928ac0c05e92585727f4f3635c5fde
parent8882034fc3966bee697a94d70f56a3e3197b9988 (diff)
downloadeclipse.platform.debug-I20181228-1800.tar.gz
eclipse.platform.debug-I20181228-1800.tar.xz
eclipse.platform.debug-I20181228-1800.zip
The call to getViewSite().getActionsBars().updateActionBars() is not necessary because setGlobalActions() also executes this call. Change-Id: I90889af76f1997662d10fc8b90f303e05c534c5c Signed-off-by: Denis Ungemach <denis.ungemach@sap.com>
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/VariablesView.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/VariablesView.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/VariablesView.java
index 4c45773d5..ea9958ce2 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/VariablesView.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/variables/VariablesView.java
@@ -987,7 +987,6 @@ public class VariablesView extends AbstractDebugView implements IDebugContextLis
super.updateObjects();
if (fTreeHasFocus) {
setGlobalActions();
- getViewSite().getActionBars().updateActionBars();
}
}

Back to the top