()
| 1006 | if ("0".equals(result)) { |
| 1007 | EventQueue.invokeLater(new Runnable() { |
| 1008 | public void run() { |
| 1009 | checkLookAndFeel(); |
| 1010 | final String msg = |
| 1011 | "To use fullScreen(SPAN), first turn off “Displays have separate spaces”\n" + |
| 1012 | "in System Preferences \u2192 Mission Control. Then log out and log back in."; |
| 1013 | JOptionPane.showMessageDialog(null, msg, "Apple's Defaults Stink", |
| 1014 | JOptionPane.WARNING_MESSAGE); |
| 1015 | } |
| 1016 | }); |
| 1017 | } else if (!"1".equals(result)) { |
| 1018 | System.err.println("Could not check the status of “Displays have separate spaces.”"); |
nothing calls this directly
no test coverage detected