Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/FixEmbeddedLinksBlam.java')
-rw-r--r--plugins/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/FixEmbeddedLinksBlam.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/FixEmbeddedLinksBlam.java b/plugins/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/FixEmbeddedLinksBlam.java
index 801d7721afc..8a85329b13c 100644
--- a/plugins/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/FixEmbeddedLinksBlam.java
+++ b/plugins/org.eclipse.osee.define/src/org/eclipse/osee/define/blam/operation/FixEmbeddedLinksBlam.java
@@ -63,7 +63,7 @@ public class FixEmbeddedLinksBlam extends AbstractBlam {
if (artifact.isAttributeTypeValid(CoreAttributeTypes.WholeWordContent)) {
String content = artifact.getSoleAttributeValueAsString(CoreAttributeTypes.WholeWordContent, "");
if (Strings.isValid(content)) {
- Set<String> unknownGuids = new HashSet<String>();
+ Set<String> unknownGuids = new HashSet<>();
content = WordMlLinkHandler.link(linkType, artifact, content, unknownGuids);
artifact.setSoleAttributeFromString(CoreAttributeTypes.WholeWordContent, content);
artifact.persist(tx);

Back to the top