private static Map getTempDirProps()

in src/main/java/org/apache/sling/feature/resolver/FrameworkResolver.java [73:80]


    private static Map<String, String> getTempDirProps() {
        try {
            String temp = Files.createTempDirectory("frameworkresolver").toFile().getAbsolutePath();
            return Collections.singletonMap(Constants.FRAMEWORK_STORAGE, temp);
        } catch (IOException e) {
            throw new RuntimeException(e);
        }
    }