Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.orcs.test/src/org/eclipse/osee/orcs/api/OrcsAttributeLoadingTest.java')
-rw-r--r--plugins/org.eclipse.osee.orcs.test/src/org/eclipse/osee/orcs/api/OrcsAttributeLoadingTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.orcs.test/src/org/eclipse/osee/orcs/api/OrcsAttributeLoadingTest.java b/plugins/org.eclipse.osee.orcs.test/src/org/eclipse/osee/orcs/api/OrcsAttributeLoadingTest.java
index 381f7e4046b..58512218b64 100644
--- a/plugins/org.eclipse.osee.orcs.test/src/org/eclipse/osee/orcs/api/OrcsAttributeLoadingTest.java
+++ b/plugins/org.eclipse.osee.orcs.test/src/org/eclipse/osee/orcs/api/OrcsAttributeLoadingTest.java
@@ -85,7 +85,7 @@ public class OrcsAttributeLoadingTest {
}
private Map<Integer, ArtifactReadable> createLookup(Iterable<ArtifactReadable> arts) {
- Map<Integer, ArtifactReadable> lookup = new HashMap<Integer, ArtifactReadable>();
+ Map<Integer, ArtifactReadable> lookup = new HashMap<>();
for (ArtifactReadable artifact : arts) {
lookup.put(artifact.getLocalId(), artifact);
}

Back to the top