> +      } catch (IOException e) {
> +         return "Everyone";
> +      }
> +      try {
> +         pr.waitFor();
> +      } catch (InterruptedException e) {
> +         e.printStackTrace();
> +      }
> +      try ( InputStreamReader reader = new 
> InputStreamReader(pr.getInputStream(), Charsets.UTF_8)) {
> +         return CharStreams.toString(reader).split(" ")[0];
> +      } catch (IOException e) {
> +         return "Everyone";
> +      }
> +   }
> +
> +   public static String WINDOWS_EVERYONE = getWindowsEveryonePrincipalName();

[minor] Can we make this `final`?

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

Reply via email to