You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by jo...@apache.org on 2009/08/18 21:30:53 UTC

svn commit: r805547 - /commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/FileSystemOptions.java

Author: joehni
Date: Tue Aug 18 19:30:52 2009
New Revision: 805547

URL: http://svn.apache.org/viewvc?rev=805547&view=rev
Log:
Make class final, since you cannot use its internals anyway.

Modified:
    commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/FileSystemOptions.java

Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/FileSystemOptions.java
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/FileSystemOptions.java?rev=805547&r1=805546&r2=805547&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/FileSystemOptions.java (original)
+++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/FileSystemOptions.java Tue Aug 18 19:30:52 2009
@@ -29,7 +29,7 @@
  * @see org.apache.commons.vfs.provider.sftp.SftpFileSystemConfigBuilder
  * @see org.apache.commons.vfs.provider.ftp.FtpFileSystemConfigBuilder
  */
-public class FileSystemOptions implements Cloneable
+public final class FileSystemOptions implements Cloneable
 {
     /** The options */
     private Map options = new TreeMap();