Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/HelpContextRegistry.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/HelpContextRegistry.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/HelpContextRegistry.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/HelpContextRegistry.java
index fdb520eefc0..200a483b03d 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/HelpContextRegistry.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/HelpContextRegistry.java
@@ -17,7 +17,7 @@ import java.util.concurrent.ConcurrentHashMap;
* @author Roberto E. Escobar
*/
public final class HelpContextRegistry {
- private static final Map<String, HelpContext> contexts = new ConcurrentHashMap<String, HelpContext>();
+ private static final Map<String, HelpContext> contexts = new ConcurrentHashMap<>();
public static HelpContext asContext(String pluginId, String name) {
String key = HelpContext.asReference(pluginId, name);

Back to the top