summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/entity/proxy/EntityProxy.java
diff options
context:
space:
mode:
Diffstat (limited to 'source/com/c2kernel/entity/proxy/EntityProxy.java')
-rw-r--r--[-rwxr-xr-x]source/com/c2kernel/entity/proxy/EntityProxy.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/com/c2kernel/entity/proxy/EntityProxy.java b/source/com/c2kernel/entity/proxy/EntityProxy.java
index a5b6822..b34653f 100755..100644
--- a/source/com/c2kernel/entity/proxy/EntityProxy.java
+++ b/source/com/c2kernel/entity/proxy/EntityProxy.java
@@ -35,7 +35,7 @@ abstract public class EntityProxy implements ManageableEntity
protected ManageableEntity mEntity = null;
protected org.omg.CORBA.Object mIOR;
protected int mSystemKey;
- private HashMap mSubscriptions;
+ private HashMap<MemberSubscription, EntityProxyObserver> mSubscriptions;
/**************************************************************************
*
@@ -60,7 +60,7 @@ abstract public class EntityProxy implements ManageableEntity
mIOR = ior;
mSystemKey = systemKey;
- mSubscriptions = new HashMap();
+ mSubscriptions = new HashMap<MemberSubscription, EntityProxyObserver>();
}