Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/importer/OutfileImportPage.java')
-rw-r--r--plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/importer/OutfileImportPage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/importer/OutfileImportPage.java b/plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/importer/OutfileImportPage.java
index 2bec3e0a2b8..c770b4207e8 100644
--- a/plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/importer/OutfileImportPage.java
+++ b/plugins/org.eclipse.osee.ote.ui.define/src/org/eclipse/osee/ote/ui/define/importer/OutfileImportPage.java
@@ -73,7 +73,7 @@ public class OutfileImportPage extends WizardDataTransferPage {
this.treeSelectionMode = true;
this.contentProvider = new WorkbenchContentProvider();
this.labelProvider = new WorkbenchLabelProvider();
- this.filters = new ArrayList<ViewerFilter>();
+ this.filters = new ArrayList<>();
// this.filters.add(new FileFilter());
this.startingResourceSelection = selection;
}
@@ -325,7 +325,7 @@ public class OutfileImportPage extends WizardDataTransferPage {
private URI[] getSelectedResources() {
Object[] selected = treeViewer.getCheckedElements();
- List<URI> selectedResources = new ArrayList<URI>();
+ List<URI> selectedResources = new ArrayList<>();
for (Object object : selected) {
if (object instanceof IFile) {
IFile iFile = (IFile) object;

Back to the top