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 17:14:05 UTC

svn commit: r1362082 - /commons/proper/vfs/trunk/examples/src/main/java/org/apache/commons/vfs2/example/Shell.java

Author: ggregory
Date: Mon Jul 16 15:14:05 2012
New Revision: 1362082

URL: http://svn.apache.org/viewvc?rev=1362082&view=rev
Log:
Checkstyle fix.

Modified:
    commons/proper/vfs/trunk/examples/src/main/java/org/apache/commons/vfs2/example/Shell.java

Modified: commons/proper/vfs/trunk/examples/src/main/java/org/apache/commons/vfs2/example/Shell.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/examples/src/main/java/org/apache/commons/vfs2/example/Shell.java?rev=1362082&r1=1362081&r2=1362082&view=diff
==============================================================================
--- commons/proper/vfs/trunk/examples/src/main/java/org/apache/commons/vfs2/example/Shell.java (original)
+++ commons/proper/vfs/trunk/examples/src/main/java/org/apache/commons/vfs2/example/Shell.java Mon Jul 16 15:14:05 2012
@@ -317,7 +317,8 @@ public class Shell
         throws FileSystemException
     {
         final FileObject[] children = dir.getChildren();
-        for (final FileObject child : children) {
+        for (final FileObject child : children) 
+        {
             System.out.print(prefix);
             System.out.print(child.getName().getBaseName());
             if (child.getType() == FileType.FOLDER)