Merge branch 'master' into linux

This commit is contained in:
T. Joseph Carter 2017-11-09 13:10:55 -08:00
commit 4d5d6e4cf5
1 changed files with 4 additions and 4 deletions

View File

@ -85,8 +85,8 @@ public class AppleCommander {
"com.webcodepro.applecommander.ui.swt.SwtAppleCommander"); //$NON-NLS-1$
Object object = swtAppleCommander.newInstance();
Method launchMethod = swtAppleCommander.
getMethod("launch", null); //$NON-NLS-1$
launchMethod.invoke(object, null);
getMethod("launch", (Class[])null); //$NON-NLS-1$
launchMethod.invoke(object, (Object[])null);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SecurityException e) {
@ -139,8 +139,8 @@ public class AppleCommander {
"com.webcodepro.applecommander.ui.swing.SwingAppleCommander"); //$NON-NLS-1$
Object object = swtAppleCommander.newInstance();
Method launchMethod = swtAppleCommander.
getMethod("launch", null); //$NON-NLS-1$
launchMethod.invoke(object, null);
getMethod("launch", (Class[])null); //$NON-NLS-1$
launchMethod.invoke(object, (Object[])null);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (SecurityException e) {