Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/actions/ChangeBuildConfigActionBase.java')
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/actions/ChangeBuildConfigActionBase.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/actions/ChangeBuildConfigActionBase.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/actions/ChangeBuildConfigActionBase.java
index 074fbdb038f..35316325084 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/actions/ChangeBuildConfigActionBase.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/actions/ChangeBuildConfigActionBase.java
@@ -53,7 +53,7 @@ public class ChangeBuildConfigActionBase {
/**
* List of selected managed-built projects
*/
- protected HashSet<IProject> fProjects = new HashSet<IProject>();
+ protected HashSet<IProject> fProjects = new HashSet<>();
/**
* Fills the menu with build configurations which are common for all selected projects
@@ -68,7 +68,7 @@ public class ChangeBuildConfigActionBase {
for (MenuItem item2 : items)
item2.dispose();
- SortedSet<String> configNames = new TreeSet<String>();
+ SortedSet<String> configNames = new TreeSet<>();
String sCurrentConfig = null;
boolean bCurrentConfig = true;
for (IProject prj : fProjects) {

Back to the top