You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by th...@apache.org on 2014/09/01 16:00:41 UTC

svn commit: r1621789 - /jackrabbit/site/live/oak/docs/construct.html

Author: thomasm
Date: Mon Sep  1 14:00:41 2014
New Revision: 1621789

URL: http://svn.apache.org/r1621789
Log:
OAK-936: Site checkin for project Oak Documentation-1.1-SNAPSHOT

Modified:
    jackrabbit/site/live/oak/docs/construct.html

Modified: jackrabbit/site/live/oak/docs/construct.html
URL: http://svn.apache.org/viewvc/jackrabbit/site/live/oak/docs/construct.html?rev=1621789&r1=1621788&r2=1621789&view=diff
==============================================================================
--- jackrabbit/site/live/oak/docs/construct.html (original)
+++ jackrabbit/site/live/oak/docs/construct.html Mon Sep  1 14:00:41 2014
@@ -422,7 +422,7 @@ ContentRepository repository = new Oak(k
 ContentSession session = new Oak().createContentSession();
 Root root = new Oak().createRoot();
 </pre></div>
-<p>By default no pluggable components are associated with the created repository, so all login attempts will work and result in full write access. There&#x2019;s also no need to close the sessions or otherwise release acquired resources, as normal garbage collection will take care of everything.</p>
+<p>By default no pluggable components are associated with the created repository, so all login attempts will work and result in full write access. </p>
 <p>To add extra functionality like type validation or indexing support, use the <tt>with()</tt> method. The method takes all kinds of Oak plugins and adds them to the repository to be created. The method returns the Oak instance being used, so you can chain method calls like this:</p>
 
 <div class="source">