Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.jaxrs/src/org/eclipse/osee/jaxrs/JaxRsTemplateContribution.java')
-rw-r--r--plugins/org.eclipse.osee.jaxrs/src/org/eclipse/osee/jaxrs/JaxRsTemplateContribution.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.jaxrs/src/org/eclipse/osee/jaxrs/JaxRsTemplateContribution.java b/plugins/org.eclipse.osee.jaxrs/src/org/eclipse/osee/jaxrs/JaxRsTemplateContribution.java
index 741f8bdba91..e9fa7b808a5 100644
--- a/plugins/org.eclipse.osee.jaxrs/src/org/eclipse/osee/jaxrs/JaxRsTemplateContribution.java
+++ b/plugins/org.eclipse.osee.jaxrs/src/org/eclipse/osee/jaxrs/JaxRsTemplateContribution.java
@@ -47,7 +47,7 @@ public class JaxRsTemplateContribution {
@XmlElement
public Set<JaxRsTemplateLink> getTemplates() {
if (templates == null) {
- templates = new TreeSet<JaxRsTemplateLink>();
+ templates = new TreeSet<>();
}
return templates;
}

Back to the top