Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/ArtifactTypeInheritanceTest.java')
-rw-r--r--plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/ArtifactTypeInheritanceTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/ArtifactTypeInheritanceTest.java b/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/ArtifactTypeInheritanceTest.java
index 9ebfbcb4d99..7a84a10d091 100644
--- a/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/ArtifactTypeInheritanceTest.java
+++ b/plugins/org.eclipse.osee.client.integration.tests/src/org/eclipse/osee/client/integration/tests/integration/skynet/core/ArtifactTypeInheritanceTest.java
@@ -59,7 +59,7 @@ public class ArtifactTypeInheritanceTest {
@Test
public void testAttributeTypesOfDescendants() throws OseeCoreException {
ArtifactType baseArtifactType = ArtifactTypeManager.getType(CoreArtifactTypes.Artifact);
- Set<ArtifactType> allTypes = new HashSet<ArtifactType>(ArtifactTypeManager.getAllTypes());
+ Set<ArtifactType> allTypes = new HashSet<>(ArtifactTypeManager.getAllTypes());
allTypes.remove(baseArtifactType);
Branch branch = BranchManager.getBranch(CoreBranches.SYSTEM_ROOT);

Back to the top