Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes #1825
  • Loading branch information
iloveeclipse committed Feb 27, 2024
1 parent cbe9bc8 commit 25ede56
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: JDT Tip of the Day Provider
Bundle-SymbolicName: org.eclipse.jdt.tips.user;singleton:=true
Bundle-Version: 0.3.0.qualifier
Bundle-Version: 0.3.100.qualifier
Bundle-Vendor: Eclipse.org
Automatic-Module-Name: org.eclipse.jdt.tips.user
Bundle-RequiredExecutionEnvironment: JavaSE-17
Expand Down
Expand Up @@ -4,7 +4,7 @@
"description": "Java and JDT Tips",
"expression": "<with variable=\"activeWorkbenchWindow.activePerspective\"><equals value=\"org.eclipse.jdt.ui.JavaPerspective\"></equals></with>",
"variables": {
"baseUrl": "http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/tips/org.eclipse.jdt.tips.user"
"baseUrl": "https://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/tips/org.eclipse.jdt.tips.user"
},
"tips": [{
"date": "2018-01-05",
Expand Down
Expand Up @@ -21,6 +21,6 @@
</parent>
<groupId>org.eclipse.ui</groupId>
<artifactId>org.eclipse.tips.core</artifactId>
<version>0.3.0-SNAPSHOT</version>
<version>0.3.100-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Expand Up @@ -34,7 +34,7 @@ public JDTTipProvider() throws MalformedURLException {
if (fUrl != null) {
setJsonUrl(fUrl);
} else {
fUrl = "http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/tips/org.eclipse.jdt.tips.user/" + FILENAME; //$NON-NLS-1$
fUrl = "https://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/tips/org.eclipse.jdt.tips.user/" + FILENAME; //$NON-NLS-1$
setJsonUrl(fUrl);
}
}
Expand Down

0 comments on commit 25ede56

Please sign in to comment.