> @@ -29,6 +29,11 @@
>      public static final Object[][] NO_INVOCATIONS = new Object[0][0];
>      public static final Object[][] SINGLE_NO_ARG_INVOCATION = { new 
> Object[0] };
>  
> +    public static boolean isMacOSX() {
> +        String osName = System.getProperty("os.name");
> +        return osName.contains("OS X");

Is this safe, or should we use a case-insensitive comparison?

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

Reply via email to