Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/TeamProjectIndexExportWizardPage.java')
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/TeamProjectIndexExportWizardPage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/TeamProjectIndexExportWizardPage.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/TeamProjectIndexExportWizardPage.java
index 11722d41f4f..9bf3abc2c9b 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/TeamProjectIndexExportWizardPage.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/wizards/indexwizards/TeamProjectIndexExportWizardPage.java
@@ -195,7 +195,7 @@ public class TeamProjectIndexExportWizardPage extends WizardPage implements List
}
private void initProjects() {
- ArrayList<ICProject> input = new ArrayList<ICProject>();
+ ArrayList<ICProject> input = new ArrayList<>();
ICProject[] projects;
try {
projects = CoreModel.getDefault().getCModel().getCProjects();
@@ -211,7 +211,7 @@ public class TeamProjectIndexExportWizardPage extends WizardPage implements List
}
private void setupBasedOnInitialSelections() {
- HashSet<String> names = new HashSet<String>();
+ HashSet<String> names = new HashSet<>();
Iterator<?> it = fInitialSelection.iterator();
while (it.hasNext()) {
IProject project = (IProject) it.next();

Back to the top