Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/AttributeTypeManager.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/AttributeTypeManager.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/AttributeTypeManager.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/AttributeTypeManager.java
index a8838a6d092..9e02e0828d7 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/AttributeTypeManager.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/AttributeTypeManager.java
@@ -54,7 +54,7 @@ public class AttributeTypeManager {
public static Collection<IAttributeType> getValidAttributeTypes(IOseeBranch branchToken) throws OseeCoreException {
Branch branch = getBranchCache().get(branchToken);
- Set<IAttributeType> attributeTypes = new HashSet<IAttributeType>(100);
+ Set<IAttributeType> attributeTypes = new HashSet<>(100);
for (ArtifactType artifactType : ArtifactTypeManager.getAllTypes()) {
attributeTypes.addAll(artifactType.getAttributeTypes(branch));
}
@@ -66,7 +66,7 @@ public class AttributeTypeManager {
}
public static Collection<IAttributeType> getTaggableTypes() throws OseeCoreException {
- Collection<IAttributeType> taggableTypes = new ArrayList<IAttributeType>();
+ Collection<IAttributeType> taggableTypes = new ArrayList<>();
for (AttributeType type : getAllTypes()) {
if (type.isTaggable()) {
taggableTypes.add(type);
@@ -76,7 +76,7 @@ public class AttributeTypeManager {
}
public static Collection<IAttributeType> getSingleMultiplicityTypes() throws OseeCoreException {
- Collection<IAttributeType> types = new ArrayList<IAttributeType>();
+ Collection<IAttributeType> types = new ArrayList<>();
for (AttributeType type : getAllTypes()) {
if (type.getMaxOccurrences() == 1) {
types.add(type);
@@ -132,7 +132,7 @@ public class AttributeTypeManager {
}
public static Map<String, String> getEnumerationValueDescriptions(IAttributeType attributeType) throws OseeCoreException {
- Map<String, String> values = new HashMap<String, String>();
+ Map<String, String> values = new HashMap<>();
for (OseeEnumEntry entry : AttributeTypeManager.getType(attributeType).getOseeEnumType().values()) {
values.put(entry.getName(), entry.getDescription());
}

Back to the top