Subversion Repository Public Repository

litesoft

Diff Revisions 973 vs 974 for /trunk/Java/ScarPlus/src/com/esotericsoftware/scar/FTP.java

Diff revisions: vs.
  @@ -44,14 +44,14 @@
44 44 ftp.storeFile( new File( path ).getName(), input );
45 45 }
46 46 finally {
47 - FileUtil.dispose( input );
47 + FileUtils.dispose( input );
48 48 }
49 49 }
50 50 ftp.logout();
51 51 ftp.disconnect();
52 52 }
53 53 catch ( IOException e ) {
54 - throw new WrappedIOException( e );
54 + throw new FileSystemException( e );
55 55 }
56 56 return true;
57 57 }