> @@ -709,6 +710,12 @@ public void downloadBlob(String container, String name,
> File destination, Execut
> }
> destination.delete();
> throw new RuntimeException(e);
> + } finally {
> + if (raf != null) {
> + try {
> + raf.close();
> + } catch (IOException e1) {}
Use `Closeables2.closeQuietly` instead?
--
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#r77898630