[jboss-cvs] JBossAS SVN: r95242 - projects/vfs/branches/dml-zip-rework/src/main/java/org/jboss/vfs.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Oct 20 23:24:02 EDT 2009


Author: david.lloyd at jboss.com
Date: 2009-10-20 23:24:01 -0400 (Tue, 20 Oct 2009)
New Revision: 95242

Modified:
   projects/vfs/branches/dml-zip-rework/src/main/java/org/jboss/vfs/VirtualFile.java
Log:
More javadoc cleanup

Modified: projects/vfs/branches/dml-zip-rework/src/main/java/org/jboss/vfs/VirtualFile.java
===================================================================
--- projects/vfs/branches/dml-zip-rework/src/main/java/org/jboss/vfs/VirtualFile.java	2009-10-21 03:21:20 UTC (rev 95241)
+++ projects/vfs/branches/dml-zip-rework/src/main/java/org/jboss/vfs/VirtualFile.java	2009-10-21 03:24:01 UTC (rev 95242)
@@ -149,8 +149,6 @@
      * When the file was last modified
      *
      * @return the last modified time
-     *
-     * @throws IOException for any problem accessing the virtual file system
      */
     public long getLastModified() {
         final VFS.Mount mount = VFS.getMount(this);
@@ -161,8 +159,6 @@
      * Get the size
      *
      * @return the size
-     *
-     * @throws IOException for any problem accessing the virtual file system
      */
     public long getSize() {
         final VFS.Mount mount = VFS.getMount(this);
@@ -173,8 +169,6 @@
      * Tests whether the underlying implementation file still exists.
      *
      * @return true if the file exists, false otherwise.
-     *
-     * @throws IOException - thrown on failure to detect existence.
      */
     public boolean exists() {
         final VFS.Mount mount = VFS.getMount(this);




More information about the jboss-cvs-commits mailing list