You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2012/08/31 05:05:04 UTC

svn commit: r1379266 - /commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FilesCache.java

Author: ggregory
Date: Fri Aug 31 03:05:04 2012
New Revision: 1379266

URL: http://svn.apache.org/viewvc?rev=1379266&view=rev
Log:
Use the active voice in Javadocs.

Modified:
    commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FilesCache.java

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FilesCache.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FilesCache.java?rev=1379266&r1=1379265&r2=1379266&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FilesCache.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FilesCache.java Fri Aug 31 03:05:04 2012
@@ -30,7 +30,7 @@ public interface FilesCache
     void putFile(final FileObject file);
 
     /**
-     * Add a FileObject to the cache if it isn't already present.
+     * Adds a FileObject to the cache if it isn't already present.
      *
      * @param file the file
      * @return true if the file was stored, false otherwise.
@@ -38,7 +38,7 @@ public interface FilesCache
     boolean putFileIfAbsent(final FileObject file);
 
     /**
-     * Retrieve a FileObject from the cache by name.
+     * Retrieves a FileObject from the cache by name.
      *
      * @param filesystem The FileSystem.
      * @param name the name
@@ -48,6 +48,7 @@ public interface FilesCache
 
     /**
      * Purges the entries corresponding to the FileSystem.
+     * 
      * @param fileSystem The FileSystem.
      */
     void clear(final FileSystem fileSystem);