aboutsummaryrefslogtreecommitdiffstats
path: root/ajde
diff options
context:
space:
mode:
authorAlexander Kriegisch <Alexander@Kriegisch.name>2021-07-23 11:31:13 +0700
committerAlexander Kriegisch <Alexander@Kriegisch.name>2024-01-06 10:09:11 +0100
commit8518fcf96e52edea67b862ade95b64f63607e605 (patch)
treebebd46a1f1204d1d3812853be83189ec2066a4c5 /ajde
parent9ddd317779717bdb8f4eb1d61b7bca596a1846e3 (diff)
downloadaspectj-8518fcf96e52edea67b862ade95b64f63607e605.tar.gz
aspectj-8518fcf96e52edea67b862ade95b64f63607e605.zip
Globally replace HTTP links to eclipse.org by HTTPS
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
Diffstat (limited to 'ajde')
-rw-r--r--ajde/src/main/java/org/aspectj/ajde/ui/swing/ErrorDialog.java2
-rw-r--r--ajde/src/main/java/org/aspectj/ajde/ui/swing/OptionsFrame.java4
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();