> @@ -700,6 +700,7 @@ public void downloadBlob(String container, String name,
> File destination, Execut
>
> Futures.getUnchecked(Futures.allAsList(results));
>
> + raf.close();
> } catch (IOException e) {
> // cleanup, attempt to delete large file
> if (raf != null) {
Same here. If you close it in the finally block, there is no need to close it
here too.
--
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/1007/files/ef80208da1149c5d1545d6cbf5c182491545ffa0#r77898439