> @@ -38,8 +43,18 @@ public static void deleteRecursively(File file) throws 
> IOException {
>              }
>           }
>        }
> -      if (!file.delete()) {
> -         throw new IOException("Could not delete: " + file);
> +
> +      /**
> +       * Java-6 Compatible version of handling non-empty directories and 
> access-denied on windows.
> +       */
> +      if(!file.delete()){

On all these `if`s: space before `(`

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/454/files#r15473547

Reply via email to