public void handleEvent()

in src/main/java/org/apache/sling/scripting/esx/services/impl/RepositoryModuleCache.java [68:74]


    public void handleEvent(Event event) {
        final String eventPath = (String) event.getProperty(SlingConstants.PROPERTY_PATH);
        if (cache.remove(eventPath) != null) {
            log.info("{} was removed from cache", eventPath);
        }

    }