Aren't there a few of those?

G

On Thu, Nov 1, 2018 at 5:38 PM <e...@apache.org> wrote:

> Author: ecki
> Date: Thu Nov  1 23:38:03 2018
> New Revision: 1845524
>
> URL: http://svn.apache.org/viewvc?rev=1845524&view=rev
> Log:
> [VFS-678] Use Arrays.toString
>
> Modified:
>
> commons/proper/vfs/trunk/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/Shell.java
>
> Modified:
> commons/proper/vfs/trunk/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/Shell.java
> URL:
> http://svn.apache.org/viewvc/commons/proper/vfs/trunk/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/Shell.java?rev=1845524&r1=1845523&r2=1845524&view=diff
>
> ==============================================================================
> ---
> commons/proper/vfs/trunk/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/Shell.java
> (original)
> +++
> commons/proper/vfs/trunk/commons-vfs2-examples/src/main/java/org/apache/commons/vfs2/example/Shell.java
> Thu Nov  1 23:38:03 2018
> @@ -38,6 +38,7 @@ import org.apache.commons.vfs2.FileType;
>  import org.apache.commons.vfs2.FileUtil;
>  import org.apache.commons.vfs2.Selectors;
>  import org.apache.commons.vfs2.VFS;
> +import org.apache.commons.vfs2.operations.FileOperation;
>  import org.apache.commons.vfs2.operations.FileOperationProvider;
>
>  /**
> @@ -155,7 +156,7 @@ public final class Shell {
>          }
>          final FileOperationProvider[] ops =
> mgr.getOperationProviders(scheme);
>          if (ops != null && ops.length > 0) {
> -            System.out.println("  operations: " + Arrays.asList(ops));
> +            System.out.println("  operations: " + Arrays.toString(ops));
>          }
>      }
>
>
>
>

Reply via email to