private static Set getContentTypes()

in src/main/java/org/apache/sling/security/impl/ContentDispositionFilter.java [167:174]


    private static Set<String> getContentTypes(String contentTypes) {
        Set<String> contentTypesSet = new HashSet<>();
        if (contentTypes != null && contentTypes.length() > 0) {
            String[] contentTypesArray = contentTypes.split(",");
            Collections.addAll(contentTypesSet, contentTypesArray);
        }
        return contentTypesSet;
    }