From cd8456f94025b368b47b5506ec98cb0eba6051ba Mon Sep 17 00:00:00 2001 From: hansonr Date: Mon, 21 Jan 2019 10:42:13 -0600 Subject: [PATCH] comments only --- src/jalview/util/Platform.java | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/src/jalview/util/Platform.java b/src/jalview/util/Platform.java index 6a5f133..2953c97 100644 --- a/src/jalview/util/Platform.java +++ b/src/jalview/util/Platform.java @@ -69,6 +69,37 @@ public class Platform 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 -- 1.7.10.2