Merge lp:~yrke/tapaal/tapaal-bug-1782994 into lp:tapaal

Proposed by Kenneth Yrke Jørgensen
Status: Merged
Approved by: Jiri Srba
Approved revision: 966
Merged at revision: 966
Proposed branch: lp:~yrke/tapaal/tapaal-bug-1782994
Merge into: lp:tapaal
Diff against target: 16 lines (+5/-1)
1 file modified
src/pipe/gui/CreateGui.java (+5/-1)
To merge this branch: bzr merge lp:~yrke/tapaal/tapaal-bug-1782994
Reviewer Review Type Date Requested Status
Jiri Srba Approve
Review via email: mp+351754@code.launchpad.net

Commit message

Fixed bug #1782994 now check correctly if MACos integration can be loaded

Current implemented MacOS integration does not work on Java 9 and newer

To post a comment you must log in.
Revision history for this message
Jiri Srba (srba) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/pipe/gui/CreateGui.java'
2--- src/pipe/gui/CreateGui.java 2018-05-24 16:13:14 +0000
3+++ src/pipe/gui/CreateGui.java 2018-07-30 10:49:02 +0000
4@@ -20,7 +20,11 @@
5 appGui = new GuiFrame(TAPAAL.getProgramName());
6
7 if (Platform.isMac()){
8- SpecialMacHandler.postprocess();
9+ try {
10+ SpecialMacHandler.postprocess();
11+ } catch (NoClassDefFoundError e) {
12+ //Failed loading special mac handler, ignore and run program without MacOS integration
13+ }
14 }
15
16 appGui.setVisible(true);

Subscribers

People subscribed via source and target branches