Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Roy2020-10-09 18:26:24 +0000
committerDenis Roy2020-10-09 18:27:33 +0000
commit17ee1728fb9a3b9d283abe0f03a71a0bc253ef9d (patch)
tree2dd61153cd9a84d79471eba3ffb760faa44aeedc
parenta7768e11d35c5a130f6a885bd308fc9c686e8b97 (diff)
downloadeclipse.org-common-17ee1728fb9a3b9d283abe0f03a71a0bc253ef9d.tar.gz
eclipse.org-common-17ee1728fb9a3b9d283abe0f03a71a0bc253ef9d.tar.xz
eclipse.org-common-17ee1728fb9a3b9d283abe0f03a71a0bc253ef9d.zip
Bug 547932 - Discontinue http mirrors
Change-Id: Id7ff05371723503d9d73cb3e1aee64221ce29586 Signed-off-by: Denis Roy <denis.roy@eclipse-foundation.org>
-rw-r--r--system/app.class.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/system/app.class.php b/system/app.class.php
index fe9795b5..d5fce27b 100644
--- a/system/app.class.php
+++ b/system/app.class.php
@@ -1,7 +1,7 @@
<?php
/**
* ********************************************************************
- * Copyright (c) 2006-2018 Eclipse Foundation and others.
+ * Copyright (c) 2006-2020 Eclipse Foundation and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -57,14 +57,14 @@ class App {
*
* @var string
*/
- private $OUR_DOWNLOAD_URL = "http://download1.eclipse.org";
+ private $OUR_DOWNLOAD_URL = "https://download.eclipse.org";
/**
* Public download URL
*
* @var string
*/
- private $PUB_DOWNLOAD_URL = "http://download.eclipse.org";
+ private $PUB_DOWNLOAD_URL = "https://download.eclipse.org";
/**
* Download base path

Back to the top