Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/console/IndexerCommand.java')
-rw-r--r--plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/console/IndexerCommand.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/console/IndexerCommand.java b/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/console/IndexerCommand.java
index 672feb9288e..cad474596dc 100644
--- a/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/console/IndexerCommand.java
+++ b/plugins/org.eclipse.osee.orcs.core/src/org/eclipse/osee/orcs/core/internal/console/IndexerCommand.java
@@ -106,7 +106,7 @@ public class IndexerCommand implements ConsoleCommand {
long startTime = System.currentTimeMillis();
boolean indexOnlyMissingitems = false;
- Set<BranchReadable> branches = new HashSet<BranchReadable>();
+ Set<BranchReadable> branches = new HashSet<>();
String[] uuids = params.getArray("branchUuids");
if (uuids != null & uuids.length > 0) {
for (String uuid : uuids) {
@@ -136,7 +136,7 @@ public class IndexerCommand implements ConsoleCommand {
break;
case ITEM_IDS:
boolean printTags = params.getBoolean("debug");
- Set<Long> ids = new LinkedHashSet<Long>();
+ Set<Long> ids = new LinkedHashSet<>();
for (String value : params.getArray("ids")) {
ids.add(Long.parseLong(value));
}

Back to the top