String[] afunc = loc.split("\\.");
if(!afunc[1].equalsIgnoreCase(lastOccurrence)) {
lastOccurrence = afunc[1];
- // TODO find a better way of not showing the location error page. This is a cheap trick
- // to keep the page from showing.
- // ed_mann
- browser.setText("<html></html>");
showLinkReference(func);
}
+ } else if (loc.startsWith("jar:")) {
+ // TODO find a better way of not showing the location error page. This is a cheap trick
+ // to keep the page from showing.
+ // ed_mann
+ browser.setText("<html></html>");
}
}
});