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/02/16 16:00:42 UTC

svn commit: r1245010 - in /commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2: FileExtensionSelector.java FileObject.java

Author: ggregory
Date: Thu Feb 16 15:00:42 2012
New Revision: 1245010

URL: http://svn.apache.org/viewvc?rev=1245010&view=rev
Log:
Fix Checkstyle issues.

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

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileExtensionSelector.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileExtensionSelector.java?rev=1245010&r1=1245009&r2=1245010&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileExtensionSelector.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileExtensionSelector.java Thu Feb 16 15:00:42 2012
@@ -27,7 +27,7 @@ import java.util.Set;
  * The extension comparison is case insensitive.
  * </p>
  * <p>
- * The selector makes a copy of a given Collection or array. Changing the object passed in the constructors will not 
+ * The selector makes a copy of a given Collection or array. Changing the object passed in the constructors will not
  * affect the selector.
  * </p>
  *

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileObject.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileObject.java?rev=1245010&r1=1245009&r2=1245010&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileObject.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/FileObject.java Thu Feb 16 15:00:42 2012
@@ -67,7 +67,8 @@ import org.apache.commons.vfs2.operation
  * <p/>
  * <p>To find files in another file system, use a {@link FileSystemManager}.
  * <h4>Iterating Files</h4>
- *<p>You can iterate over a FileObject using the Java "foreach" statement, which provides all descendents of a FileObject.</p>
+ *<p>You can iterate over a FileObject using the Java "foreach" statement, which provides all descendents of a File
+ * Object.</p>
  *
  * <h4>Sorting Files</h4>
  *<p>Files may be sorted using {@link Arrays#sort(Object[])} and {@link Collections#sort(List)}.</p>