public static AdapterType adaptToWithoutCaching()

in src/main/java/org/apache/sling/servlethelpers/AdaptableUtil.java [28:34]


    public static <AdapterType> AdapterType adaptToWithoutCaching(Object adaptable, Class<AdapterType> type) {
        AdapterManager adapterManager = getAdapterManager();
        if (adapterManager == null) {
            return null;
        }
        return adapterManager.getAdapter(adaptable, type);
    }