return isWindows.booleanValue();
}
+// BH - preferred:
+//
+// /**
+// * @return true if this is a Mac
+// */
+// private static boolean isAMac()
+// {
+// if (isAMac == null)
+// {
+// isAMac = System.getProperty("os.name").indexOf("Mac") > -1;
+// }
+//
+// return isAMac.booleanValue();
+//
+// }
+//
+// /**
+// * Check if we are on a Microsoft plaform...
+// *
+// * @return true if we have to cope with another platform variation
+// */
+// private static boolean isWindows()
+// {
+// if (isWindows == null)
+// {
+// isWindows = System.getProperty("os.name").indexOf("Win") > -1;
+// }
+// return isWindows.booleanValue();
+// }
+//
+
/**
*
* @return true if we are running in non-interactive no UI mode