diff options
Diffstat (limited to 'ajde')
-rw-r--r-- | ajde/src/main/java/org/aspectj/ajde/ui/swing/ErrorDialog.java | 2 | ||||
-rw-r--r-- | ajde/src/main/java/org/aspectj/ajde/ui/swing/OptionsFrame.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ajde/src/main/java/org/aspectj/ajde/ui/swing/ErrorDialog.java b/ajde/src/main/java/org/aspectj/ajde/ui/swing/ErrorDialog.java index 68bf340cf..243993533 100644 --- a/ajde/src/main/java/org/aspectj/ajde/ui/swing/ErrorDialog.java +++ b/ajde/src/main/java/org/aspectj/ajde/ui/swing/ErrorDialog.java @@ -51,7 +51,7 @@ public class ErrorDialog extends JDialog { String exceptionName = "<unknown exception>"; if (throwable != null) exceptionName = throwable.getClass().getName(); this.error_label1.setText("Exception: " + exceptionName); - this.error_label2.setText("If you can't fix it, please submit a bug to http://dev.eclipse.org/bugs"); + this.error_label2.setText("If you can't fix it, please submit a bug to https://dev.eclipse.org/bugs"); this.stackTrace_textArea.setText("Message: " + message + '\n' + "Stack trace: " + details); this.setSize(420, 330); this.setLocationRelativeTo(owner); diff --git a/ajde/src/main/java/org/aspectj/ajde/ui/swing/OptionsFrame.java b/ajde/src/main/java/org/aspectj/ajde/ui/swing/OptionsFrame.java index 6a21852aa..9fc1212e9 100644 --- a/ajde/src/main/java/org/aspectj/ajde/ui/swing/OptionsFrame.java +++ b/ajde/src/main/java/org/aspectj/ajde/ui/swing/OptionsFrame.java @@ -59,12 +59,12 @@ public class OptionsFrame extends JFrame { "conforming to the Open Source Definition.\n\n" + "For support or for more information about the AspectJ\n" + "project or the license, visit the project home page at\n" + - " http://eclipse.org/aspectj\n\n" + + " https://eclipse.org/aspectj\n\n" + "If you find a bug (not solved by the documentation in the\n" + "Development Environment Guide available with this release,\n" + "any release notes, or the bug database), please submit steps\n" + "to reproduce the bug (using the IDE component) at:\n" + - " http://bugs.eclipse.org/bugs/enter_bug.cgi?product=AspectJ"; + " https://bugs.eclipse.org/bugs/enter_bug.cgi?product=AspectJ"; private JTabbedPane main_tabbedPane = new JTabbedPane(); private JPanel button_panel = new JPanel(); |