You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2012/04/23 23:32:17 UTC

svn commit: r1329466 - /incubator/jena/Scratch/AFS/Dev/trunk/src/main/java/projects/riot_reader/fm2/FileManager2.java

Author: andy
Date: Mon Apr 23 21:32:17 2012
New Revision: 1329466

URL: http://svn.apache.org/viewvc?rev=1329466&view=rev
Log:
documentation fixes

Modified:
    incubator/jena/Scratch/AFS/Dev/trunk/src/main/java/projects/riot_reader/fm2/FileManager2.java

Modified: incubator/jena/Scratch/AFS/Dev/trunk/src/main/java/projects/riot_reader/fm2/FileManager2.java
URL: http://svn.apache.org/viewvc/incubator/jena/Scratch/AFS/Dev/trunk/src/main/java/projects/riot_reader/fm2/FileManager2.java?rev=1329466&r1=1329465&r2=1329466&view=diff
==============================================================================
--- incubator/jena/Scratch/AFS/Dev/trunk/src/main/java/projects/riot_reader/fm2/FileManager2.java (original)
+++ incubator/jena/Scratch/AFS/Dev/trunk/src/main/java/projects/riot_reader/fm2/FileManager2.java Mon Apr 23 21:32:17 2012
@@ -47,7 +47,7 @@ import com.hp.hpl.jena.util.LocatorURL ;
  * one {@link LocatorURL}
  * 
  * Main operations:
- *  * <ul>
+ * <ul>
  * <li>loadModel, readModel : URI to model</li>
  * <li>open, openNoMap : URI to input stream</li>
  * <li>mapURI : map URI to another by {@link LocationMapper}</li> 
@@ -56,7 +56,6 @@ import com.hp.hpl.jena.util.LocatorURL ;
  * Utilities:
  * <ul>
  * <li>readWholeFileAsUTF8</li>
- * <li>optional caching of models<li>
  * </ul>
  * 
  * A FileManager works in conjunction with a LocationMapper.
@@ -103,9 +102,8 @@ public class FileManager2 extends Stream
     /** Create an uninitialized FileManager */
     public FileManager2() {}
     
-    /** Create a new file manager that is a deep copy another.
-     *  Location mapper and locators chain are copied (the locators are not cloned).
-     *  The model cache is not copied and is initially set to not cache.
+    /** Create a new file manager that is a copy of another.
+     * Location mapper and locators chain are copied (the locators are not cloned).
      * @param filemanager
      */
     public FileManager2(FileManager2 filemanager)
@@ -180,7 +178,6 @@ public class FileManager2 extends Stream
         Locator loc = new LocatorZip(zfn) ;
         addLocator(loc) ;
     }
-
     
     /** Remove a locator */ 
     public void remove(Locator loc) { handlers.remove(loc) ; }