Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/TitleColumn.java')
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/TitleColumn.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/TitleColumn.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/TitleColumn.java
index 00280eca8c0..2012fc03366 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/TitleColumn.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/column/TitleColumn.java
@@ -65,7 +65,7 @@ public class TitleColumn extends XViewerAtsAttributeValueColumn {
}
if (Artifacts.isOfType(element, AtsArtifactTypes.Action)) {
Collection<TeamWorkFlowArtifact> teams = ActionManager.getTeams(element);
- Set<String> strs = new HashSet<String>();
+ Set<String> strs = new HashSet<>();
strs.add(((Artifact) element).getName());
for (TeamWorkFlowArtifact team : teams) {
String str = getColumnText(team, column, columnIndex);

Back to the top