Author: ggregory
Date: Tue Aug 13 13:43:41 2013
New Revision: 1513484
URL: http://svn.apache.org/r1513484
Log:
[VFS-265][FTP] Set user dir as root dir by default.
Modified:
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpFileSystemConfigBuilder.java
commons/proper/vfs/trunk/src/changes/changes.xml
Modified:
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpFileSystemConfigBuilder.java
URL:
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpFileSystemConfigBuilder.java?rev=1513484&r1=1513483&r2=1513484&view=diff
==============================================================================
---
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpFileSystemConfigBuilder.java
(original)
+++
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/ftp/FtpFileSystemConfigBuilder.java
Tue Aug 13 13:43:41 2013
@@ -209,13 +209,16 @@ public class FtpFileSystemConfigBuilder
}
/**
- * @param opts The FileSystemOptions.
- * @return true if the user directory is treated as the root.
+ * Returns <code>true</code> if VFS treats the user directory as the root
directory. Defaults to <code>true</code>.
+ *
+ * @param opts
+ * The FileSystemOptions.
+ * @return <code>true</code> if VFS treats the user directory as the root
directory. Defaults to <code>true</code>.
* @see #setUserDirIsRoot
*/
public Boolean getUserDirIsRoot(final FileSystemOptions opts)
{
- return getBoolean(opts, USER_DIR_IS_ROOT);
+ return getBoolean(opts, USER_DIR_IS_ROOT, Boolean.TRUE);
}
/**
Modified: commons/proper/vfs/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/src/changes/changes.xml?rev=1513484&r1=1513483&r2=1513484&view=diff
==============================================================================
--- commons/proper/vfs/trunk/src/changes/changes.xml (original)
+++ commons/proper/vfs/trunk/src/changes/changes.xml Tue Aug 13 13:43:41 2013
@@ -26,6 +26,9 @@
<!-- <action issue="VFS-443" dev="ggregory" type="update"
due-to="nickallen"> -->
<!-- [Local] Need an easy way to convert from a FileObject to a
File. -->
<!-- </action> -->
+ <action issue="VFS-265" dev="ggregory" type="update" due-to="Scott
Bjerstedt">
+ [FTP] Set user dir as root dir by default.
+ </action>
<action issue="VFS-489" dev="ggregory" type="fix" due-to="Bernd
Eckenfels">
[tests] ProviderWriteTests#testListener does not fail cleanly.
</action>