Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.define.report/src/org/eclipse/osee/define/report/internal/SafetyInformationAccumulator.java')
-rw-r--r--plugins/org.eclipse.osee.define.report/src/org/eclipse/osee/define/report/internal/SafetyInformationAccumulator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.define.report/src/org/eclipse/osee/define/report/internal/SafetyInformationAccumulator.java b/plugins/org.eclipse.osee.define.report/src/org/eclipse/osee/define/report/internal/SafetyInformationAccumulator.java
index 079f2509428..2647c5c7b20 100644
--- a/plugins/org.eclipse.osee.define.report/src/org/eclipse/osee/define/report/internal/SafetyInformationAccumulator.java
+++ b/plugins/org.eclipse.osee.define.report/src/org/eclipse/osee/define/report/internal/SafetyInformationAccumulator.java
@@ -256,7 +256,7 @@ public final class SafetyInformationAccumulator {
public List<String> getAttributesToStringList(ArtifactReadable artifact, IAttributeType attributeType) {
- List<String> items = new ArrayList<String>();
+ List<String> items = new ArrayList<>();
for (AttributeReadable<?> attribute : artifact.getAttributes(attributeType)) {
items.add(attribute.getDisplayableString());
}

Back to the top