Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.ats.help.ui.test/src/org/eclipse/osee/ats/help/ui/util/ContextParser.java')
-rw-r--r--plugins/org.eclipse.osee.ats.help.ui.test/src/org/eclipse/osee/ats/help/ui/util/ContextParser.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/org.eclipse.osee.ats.help.ui.test/src/org/eclipse/osee/ats/help/ui/util/ContextParser.java b/plugins/org.eclipse.osee.ats.help.ui.test/src/org/eclipse/osee/ats/help/ui/util/ContextParser.java
index 045e8aef058..7d09fadfd46 100644
--- a/plugins/org.eclipse.osee.ats.help.ui.test/src/org/eclipse/osee/ats/help/ui/util/ContextParser.java
+++ b/plugins/org.eclipse.osee.ats.help.ui.test/src/org/eclipse/osee/ats/help/ui/util/ContextParser.java
@@ -36,7 +36,7 @@ public class ContextParser {
private static final String HREF = "href";
private static final String ID_TAG = "id";
- public Map<String, ContextEntry> entries = new HashMap<String, ContextEntry>();
+ public Map<String, ContextEntry> entries = new HashMap<>();
public String path;
private String localName;
@@ -121,7 +121,7 @@ public class ContextParser {
public final class ContextEntry {
private final String id;
- private final Set<String> references = new LinkedHashSet<String>();
+ private final Set<String> references = new LinkedHashSet<>();
public ContextEntry(String id) {
super();

Back to the top