diff options
author | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2012-11-23 20:25:45 +0000 |
---|---|---|
committer | Lyubomir Marinov <lyubomir.marinov@jitsi.org> | 2012-11-23 20:25:45 +0000 |
commit | 121170bb130418201c3247e7eded7262aff0e58f (patch) | |
tree | 8df0ba857b198f0b0668feebe627ec16ee0807dc /src/net/java/sip/communicator/util | |
parent | a626039f66c71fcee1011daea69f25e8e8da3c06 (diff) | |
download | jitsi-121170bb130418201c3247e7eded7262aff0e58f.zip jitsi-121170bb130418201c3247e7eded7262aff0e58f.tar.gz jitsi-121170bb130418201c3247e7eded7262aff0e58f.tar.bz2 |
Fixes a leak of OtrContactMenu instances (which a case of real-world usage were found to unnecessarily retain more than a megabyte of the Java heap).
Diffstat (limited to 'src/net/java/sip/communicator/util')
-rw-r--r-- | src/net/java/sip/communicator/util/AbstractServiceDependentActivator.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/java/sip/communicator/util/AbstractServiceDependentActivator.java b/src/net/java/sip/communicator/util/AbstractServiceDependentActivator.java index a2c617d..4e69df6 100644 --- a/src/net/java/sip/communicator/util/AbstractServiceDependentActivator.java +++ b/src/net/java/sip/communicator/util/AbstractServiceDependentActivator.java @@ -68,7 +68,7 @@ public abstract class AbstractServiceDependentActivator * The class of the service which this activator is interested in. * @return the class name. */ - public abstract Class getDependentServiceClass(); + public abstract Class<?> getDependentServiceClass(); /** * Setting context to the activator, as soon as we have one. |