> @@ -706,12 +709,23 @@ public void downloadBlob(String container, String name,
> File destination, Execut
>
> Futures.getUnchecked(Futures.allAsList(results));
>
> + raf.getChannel().force(true);
> + raf.getChannel().close();
> + raf.close();
> +
> + if ( destination.exists() )
> + destination.delete();
> + if ( !tempFile.renameTo(destination) ) {
Please remove extra whitespace.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/1010/files/304c72c3e24e376cebbb98bd3b8f8ad6ecd72dac#r78608020