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/07/16 21:14:31 UTC

svn commit: r1362217 - /commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/tar/test/LargeTarTestCase.java

Author: ggregory
Date: Mon Jul 16 19:14:31 2012
New Revision: 1362217

URL: http://svn.apache.org/viewvc?rev=1362217&view=rev
Log:
Add missing Javadoc elements.

Modified:
    commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/tar/test/LargeTarTestCase.java

Modified: commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/tar/test/LargeTarTestCase.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/tar/test/LargeTarTestCase.java?rev=1362217&r1=1362216&r2=1362217&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/tar/test/LargeTarTestCase.java (original)
+++ commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/tar/test/LargeTarTestCase.java Mon Jul 16 19:14:31 2012
@@ -120,10 +120,11 @@ public void setUp() throws Exception {
   }
 
   /**
-   * Search for the expected file in a given list, without using the full path
-   * @param expectedFile
-   * @param files
-   * @return
+   * Search for the expected file in a given list, without using the full path.
+   * 
+   * @param expectedFile the expected file.
+   * @param files a list of files to search.
+   * @return {@code true} if {@code expectedFile} is in {@code files}. 
    */
   protected boolean fileExists(String expectedFile, List<FileObject> files) {
     Iterator<FileObject> iter = files.iterator();