public synchronized void removeSubscriber()

in src/main/java/org/apache/sling/jms/impl/JMSTopicManager.java [148:153]


    public synchronized void removeSubscriber(ServiceReference<Subscriber> serviceRef) {
        SubscriberHolder subscriberHolder = registrations.remove(serviceRef);
        if (subscriberHolder != null) {
            subscriberHolder.close();
        }
    }