You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2016/03/31 16:33:45 UTC

svn commit: r1737245 - /sling/trunk/bundles/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepositoryManager.java

Author: cziegeler
Date: Thu Mar 31 14:33:45 2016
New Revision: 1737245

URL: http://svn.apache.org/viewvc?rev=1737245&view=rev
Log:
Adjust javadocs

Modified:
    sling/trunk/bundles/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepositoryManager.java

Modified: sling/trunk/bundles/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepositoryManager.java
URL: http://svn.apache.org/viewvc/sling/trunk/bundles/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepositoryManager.java?rev=1737245&r1=1737244&r2=1737245&view=diff
==============================================================================
--- sling/trunk/bundles/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepositoryManager.java (original)
+++ sling/trunk/bundles/jcr/base/src/main/java/org/apache/sling/jcr/base/AbstractSlingRepositoryManager.java Thu Mar 31 14:33:45 2016
@@ -48,14 +48,13 @@ import aQute.bnd.annotation.ProviderType
  * implementations of this class provide actual integration into the runtime
  * context. The livecycle of the repository instance is defined as follows:
  * <p>
- * To start the repository instance, the implemetation calls the
+ * To start the repository instance, the implementation calls the
  * {@link #start(BundleContext, String, boolean)}method which goes through the
  * steps of instantiating the repository, setting things up, and registering the
  * repository as an OSGi service:
  * <ol>
  * <li>{@link #acquireRepository()}</li>
  * <li>{@link #create(Bundle)}</li>
- * <li>{@link #setup(BundleContext, SlingRepository)}</li>
  * <li>{@link #registerService()}</li>
  * </ol>
  * <p>
@@ -64,7 +63,6 @@ import aQute.bnd.annotation.ProviderType
  * tearing all special settings down and finally shutting down the repository:
  * <ol>
  * <li>{@link #unregisterService(ServiceRegistration)}</li>
- * <li>{@link #tearDown()}</li>
  * <li>{@link #destroy(AbstractSlingRepository2)}</li>
  * <li>{@link #disposeRepository(Repository)}</li>
  * </ol>