Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2017-08-20 07:01:02 +0000
committerAlexander Kurtakov2017-08-20 07:01:02 +0000
commitadb218278eb672d6bad04456feaa5620440399dc (patch)
tree038b5ea6b8f04c444fafe726cf9692722a0610b2 /bundles/org.eclipse.equinox.p2.publisher/src/org
parentad2ea73909b67c8687b14eb12f608b7862f9eaca (diff)
downloadrt.equinox.p2-I20170820-2000.tar.gz
rt.equinox.p2-I20170820-2000.tar.xz
rt.equinox.p2-I20170820-2000.zip
Bug 521157 - Do not try to acquire PluginConverterI20170820-2000
Eclipse platform no longer ships PluginConverter implementation so trying to acquire it is pointless. Change-Id: Ice2d9acf4dcb736614c9d110fbe974c92c139016 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.publisher/src/org')
-rw-r--r--bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/internal/p2/publisher/Messages.java4
-rw-r--r--bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/internal/p2/publisher/messages.properties4
2 files changed, 2 insertions, 6 deletions
diff --git a/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/internal/p2/publisher/Messages.java b/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/internal/p2/publisher/Messages.java
index a6623af38..bc13927d1 100644
--- a/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/internal/p2/publisher/Messages.java
+++ b/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/internal/p2/publisher/Messages.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007, 2012 IBM Corporation and others. All rights reserved. This
+ * Copyright (c) 2007, 2017 IBM Corporation and others. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
@@ -15,13 +15,11 @@ import org.eclipse.osgi.util.NLS;
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.equinox.internal.p2.publisher.messages";//$NON-NLS-1$
- public static String exception_errorConverting;
public static String exception_stateAddition;
public static String exception_errorReadingManifest;
public static String exception_errorLoadingManifest;
public static String exception_errorPublishingBundle;
public static String exception_errorLoadingProductFile;
- public static String exception_noPluginConverter;
public static String exception_noArtifactRepo;
public static String exception_noMetadataRepo;
public static String exception_noBundlesOrLocations;
diff --git a/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/internal/p2/publisher/messages.properties b/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/internal/p2/publisher/messages.properties
index aa28ffe16..3641a9be4 100644
--- a/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/internal/p2/publisher/messages.properties
+++ b/bundles/org.eclipse.equinox.p2.publisher/src/org/eclipse/equinox/internal/p2/publisher/messages.properties
@@ -1,5 +1,5 @@
###############################################################################
-# Copyright (c) 2007, 2012 IBM Corporation and others.
+# Copyright (c) 2007, 2017 IBM Corporation and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
@@ -9,14 +9,12 @@
# IBM Corporation - initial API and implementation
# SAP AG - ongoing development
###############################################################################
-exception_errorConverting = An error occurred while generating manifest for {0}.
exception_stateAddition = An error has occurred while adding the bundle {0}.
exception_errorReadingManifest = An error occurred while parsing the bundle manifest {0}: {1}.
exception_errorLoadingManifest = An error occurred while loading the manifest {0}.
exception_errorPublishingBundle = An error occurred while publishing bundle {0}: {1}
exception_noBundlesOrLocations=No bundles or locations provided.
exception_noFeaturesOrLocations=No features or locations provided.
-exception_noPluginConverter=Unable to acquire PluginConverter service during generation for: {0}.
exception_noArtifactRepo=An artifact repository must be specified in order to publish artifacts.
exception_noMetadataRepo=A metadata repository must be specified.
exception_invalidSiteReference=Invalid site reference: {0}

Back to the top