public synchronized static RepositoryProvider instance()

in src/main/java/org/apache/sling/commons/testing/jcr/RepositoryProvider.java [47:52]


    public synchronized static RepositoryProvider instance() {
        if(INSTANCE == null) {
            INSTANCE = new RepositoryProvider();
        }
        return INSTANCE;
    }