Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRené Purrio2018-01-23 10:59:14 +0000
committerRené Purrio2018-01-23 11:00:04 +0000
commite43627a4c3ba910f1927052eb70677c9df1f3d97 (patch)
tree556f3c8ee2b320f17af790ad4491bf42c609e5b0 /org.eclipse.debug.ui/ui
parentd678fc595842e7b95d60b3134849ebba4d1f26f6 (diff)
downloadeclipse.platform.debug-e43627a4c3ba910f1927052eb70677c9df1f3d97.tar.gz
eclipse.platform.debug-e43627a4c3ba910f1927052eb70677c9df1f3d97.tar.xz
eclipse.platform.debug-e43627a4c3ba910f1927052eb70677c9df1f3d97.zip
Change-Id: I67ca78f5b45d1538610a81ce68344dd75a526935 Signed-off-by: René Purrio <rpurrio@itemis.de>
Diffstat (limited to 'org.eclipse.debug.ui/ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/LaunchPerspectivePreferencePage.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/LaunchPerspectivePreferencePage.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/LaunchPerspectivePreferencePage.java
index 9489da718..27389d0b5 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/LaunchPerspectivePreferencePage.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/LaunchPerspectivePreferencePage.java
@@ -202,10 +202,10 @@ public class LaunchPerspectivePreferencePage extends PreferencePage implements I
/**
* Caches
*/
- private static String[] fgPerspectiveLabels = null;
- private static Map<String, String> fgPerspectiveIdMap = null;
- private static HashSet<PerspectiveChange> fgChangeSet = null;
- private static HashSet<Object> fgCurrentWorkingContext = null;
+ private String[] fgPerspectiveLabels = null;
+ private Map<String, String> fgPerspectiveIdMap = null;
+ private HashSet<PerspectiveChange> fgChangeSet = null;
+ private HashSet<Object> fgCurrentWorkingContext = null;
/**
* A default selection listener to be reused by all combo boxes presenting perspective data

Back to the top