Author: sebb
Date: Sun Nov  7 23:47:37 2010
New Revision: 1032423

URL: http://svn.apache.org/viewvc?rev=1032423&view=rev
Log:
Exceptions not thrown by private methods

Modified:
    
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java

Modified: 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java
URL: 
http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java?rev=1032423&r1=1032422&r2=1032423&view=diff
==============================================================================
--- 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java
 (original)
+++ 
commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs/provider/webdav/WebdavFileObject.java
 Sun Nov  7 23:47:37 2010
@@ -441,7 +441,7 @@ public class WebdavFileObject extends Ht
         }
     }
 
-    private boolean isDirectory(URLFileName name) throws IOException, 
DavException
+    private boolean isDirectory(URLFileName name) throws IOException
     {
         try
         {
@@ -621,7 +621,7 @@ public class WebdavFileObject extends Ht
     {
         private WebdavFileObject file;
 
-        public WebdavOutputStream(WebdavFileObject file) throws 
FileSystemException
+        public WebdavOutputStream(WebdavFileObject file)
         {
             super(new ByteArrayOutputStream());
             this.file = file;


Reply via email to