Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/service/AttributeAdapterServiceImpl.java')
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/service/AttributeAdapterServiceImpl.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/service/AttributeAdapterServiceImpl.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/service/AttributeAdapterServiceImpl.java
index 064e75be7ae..b8977aac990 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/service/AttributeAdapterServiceImpl.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/attribute/service/AttributeAdapterServiceImpl.java
@@ -37,10 +37,10 @@ public class AttributeAdapterServiceImpl implements AttributeAdapterService {
private Thread thread;
public AttributeAdapterServiceImpl() {
- registered = new ConcurrentHashMap<String, AttributeAdapter<?>>();
- pending = new CopyOnWriteArrayList<ServiceReference<AttributeAdapter<?>>>();
+ registered = new ConcurrentHashMap<>();
+ pending = new CopyOnWriteArrayList<>();
- adapterByType = new ConcurrentHashMap<IAttributeType, AttributeAdapter<?>>();
+ adapterByType = new ConcurrentHashMap<>();
}
public void start() {

Back to the top