NPE with Oracle 1.7u4 JDK under Mac OS X 10.7
Brought to you by:
jchapman0
The fix:
// Handle BrowserLuancher NPE when running under Oracle 1.7u4 release for Mac OS X
final String mrjVersionSystemProperty = System.getProperty("mrj.version");
if (mrjVersionSystemProperty == null) {
System.setProperty("mrj.version", "999.999");
}
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
I hacked around this error to instead use the default Java open method. I've forked the repo at https://github.com/rajing/browserlauncher2
Rajin