Author: ljelinko
Date: 2012-09-12 09:02:08 -0400 (Wed, 12 Sep 2012)
New Revision: 43624
Modified:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTOpenExt.java
Log:
debugging why shortcuts do not work on Mac with JDK 1.7
Modified:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTOpenExt.java
===================================================================
---
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTOpenExt.java 2012-09-12
12:57:51 UTC (rev 43623)
+++
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTOpenExt.java 2012-09-12
13:02:08 UTC (rev 43624)
@@ -143,12 +143,12 @@
* @return
*/
public SWTBot preferenceOpen(IPreference pref) {
- log.debug("java.awt.headless: " +
System.getProperty("java.awt.headless"));
- log.debug("javaplugin.version: " +
System.getProperty("javaplugin.version"));
- log.debug("os.name: " + System.getProperty("os.name"));
- log.debug("DISPLAY: " + System.getenv("DISPLAY"));
+ System.out.println("java.awt.headless: " +
System.getProperty("java.awt.headless"));
+ System.out.println("javaplugin.version: " +
System.getProperty("javaplugin.version"));
+ System.out.println("os.name: " + System.getProperty("os.name"));
+ System.out.println("DISPLAY: " + System.getenv("DISPLAY"));
String osName = System.getProperty("os.name");
- log.debug("Result: " + Boolean.valueOf(("Linux".equals(osName) ||
"SunOS".equals(osName)) &&
+ System.out.println("Result: " +
Boolean.valueOf(("Linux".equals(osName) || "SunOS".equals(osName))
&&
(System.getenv("DISPLAY") ==
null)));
if (SWTJBTExt.isRunningOnMacOs()){
Show replies by date