Skip to content

Commit

Permalink
[NETBEANS-491] use framework support to disable error reporting (#493)
Browse files Browse the repository at this point in the history
* [NETBEANS-491] use framework support to disable error reporting

* Updated ERROR_URL
  • Loading branch information
rtaneja1 authored and geertjanw committed May 4, 2018
1 parent 6111448 commit c6be945
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Expand Up @@ -41,7 +41,7 @@ METRICS_URL=https://netbeans.org/nonav/uigestures/index4.html

# URL to display to as a welcome text in case of error
#NOI18N
ERROR_URL=https://netbeans.org/nonav/uigestures/error2.html
ERROR_URL=https://netbeans.apache.org/nb/issues.html

#NOI18N
CHECKING_SERVER_URL=http://statistics.netbeans.org/analytics/authenticate?username={0}&secur_passwd={1}
Expand Down
6 changes: 1 addition & 5 deletions uihandler/src/org/netbeans/modules/uihandler/UIHandler.java
Expand Up @@ -250,11 +250,7 @@ public void actionPerformed(ActionEvent ev) {
if (w != null) {
w.dispose();
}
try {
HtmlBrowser.URLDisplayer.getDefault().showURL(new URL(ISSUE_REPORTER_LINK));
} catch (MalformedURLException ex) {
Installer.LOG.log(Level.FINE, null, ex);
}
Installer.RP.post(this);
}

private boolean shouldReportScanCancel() {
Expand Down

0 comments on commit c6be945

Please sign in to comment.