Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 325368 | Differences between
and this patch

Collapse All | Expand All

(-)a/ui/org.eclipse.pde.core/src/org/eclipse/pde/internal/core/exports/ProductExportOperation.java (-1 / +6 lines)
Lines 7-12 Link Here
7
 *
7
 *
8
 * Contributors:
8
 * Contributors:
9
 *     IBM Corporation - initial API and implementation
9
 *     IBM Corporation - initial API and implementation
10
 *     Christian Walther (Indel AG), Andrew Niefer - [307269][325368] respect "Bundle JRE" checkbox
10
 *******************************************************************************/
11
 *******************************************************************************/
11
package org.eclipse.pde.internal.core.exports;
12
package org.eclipse.pde.internal.core.exports;
12
13
Lines 189-194 public class ProductExportOperation extends FeatureExportOperation { Link Here
189
		IJREInfo jreInfo = fProduct.getJREInfo();
190
		IJREInfo jreInfo = fProduct.getJREInfo();
190
		for (int i = 0; i < configurations.length; i++) {
191
		for (int i = 0; i < configurations.length; i++) {
191
			String[] config = configurations[i];
192
			String[] config = configurations[i];
193
194
			if (!jreInfo.includeJREWithProduct(config[0])) {
195
				continue;
196
			}
197
192
			File vm = jreInfo != null ? jreInfo.getJVMLocation(config[0]) : null;
198
			File vm = jreInfo != null ? jreInfo.getJVMLocation(config[0]) : null;
193
199
194
			if (vm != null) {
200
			if (vm != null) {
195
- 

Return to bug 325368