Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/history/column/AuthorColumn.java')
-rw-r--r--plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/history/column/AuthorColumn.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/history/column/AuthorColumn.java b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/history/column/AuthorColumn.java
index 449e4e10945..99e14d846d4 100644
--- a/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/history/column/AuthorColumn.java
+++ b/plugins/org.eclipse.osee.ats/src/org/eclipse/osee/ats/editor/history/column/AuthorColumn.java
@@ -29,7 +29,7 @@ import org.eclipse.swt.SWT;
*/
public class AuthorColumn extends XViewerValueColumn {
private static AuthorColumn instance = new AuthorColumn();
- private final Map<Integer, String> artIdToName = new HashMap<Integer, String>(40);
+ private final Map<Integer, String> artIdToName = new HashMap<>(40);
public static AuthorColumn getInstance() {
return instance;

Back to the top