Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-02-09 06:20:39 +0000
committerAlexander Kurtakov2019-02-09 06:20:39 +0000
commit3e0f073833381876c4c10d35b78be7a6057682b9 (patch)
treeb7900ab218a813bf831ec7db9488f1cf0ed15d80
parent95e5c6e07cd7021b05ffcf1b9ec938ea31a367af (diff)
downloadrt.equinox.framework-3e0f073833381876c4c10d35b78be7a6057682b9.tar.gz
rt.equinox.framework-3e0f073833381876c4c10d35b78be7a6057682b9.tar.xz
rt.equinox.framework-3e0f073833381876c4c10d35b78be7a6057682b9.zip
Bug 544262 - Deprecate org.eclipse.core.launcher#Main and WebStartMainI20190210-2135I20190210-1800I20190209-1800
Deprecate WebStartMain. Change-Id: I06636341e4c20d34caa96be1a80954f30e158253 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/WebStartMain.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/WebStartMain.java b/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/WebStartMain.java
index c2037ad9d..64380e1d8 100644
--- a/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/WebStartMain.java
+++ b/bundles/org.eclipse.equinox.launcher/src/org/eclipse/equinox/launcher/WebStartMain.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2017 IBM Corporation and others.
+ * Copyright (c) 2005, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -34,8 +34,10 @@ import java.util.zip.ZipFile;
*
* @noextend This class is not intended to be subclassed by clients.
* @noinstantiate This class is not intended to be instantiated by clients.
+ * @deprecated Java WebStart is removed in Java 11.
*/
//The bundles are discovered by finding all the jars on the classpath. Then they are added with their full path to the osgi.bundles list.
+@Deprecated
public class WebStartMain extends Main {
private static final String PROP_WEBSTART_AUTOMATIC_INSTALLATION = "eclipse.webstart.automaticInstallation"; //$NON-NLS-1$
private static final String DEFAULT_OSGI_BUNDLES = "org.eclipse.equinox.common@2:start, org.eclipse.core.runtime@start"; //$NON-NLS-1$

Back to the top