Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVikas Chandra2017-03-26 11:36:32 +0000
committerVikas Chandra2017-03-26 11:36:32 +0000
commit8edb3465ef86bdd7a0c38f45c2a9ace74bd1bd18 (patch)
tree3d327cb4176152214a0718187a08c5a42be5a845
parentcba86fa28e7802252cdac3efda998a0ba17c0f20 (diff)
downloadeclipse.pde.build-8edb3465ef86bdd7a0c38f45c2a9ace74bd1bd18.tar.gz
eclipse.pde.build-8edb3465ef86bdd7a0c38f45c2a9ace74bd1bd18.tar.xz
eclipse.pde.build-8edb3465ef86bdd7a0c38f45c2a9ace74bd1bd18.zip
compiler
-rw-r--r--org.eclipse.pde.build/src/org/eclipse/pde/internal/build/FeatureGenerator.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/FeatureGenerator.java b/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/FeatureGenerator.java
index b511e6a4..84cba948 100644
--- a/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/FeatureGenerator.java
+++ b/org.eclipse.pde.build/src/org/eclipse/pde/internal/build/FeatureGenerator.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2013 IBM Corporation and others.
+ * Copyright (c) 2006, 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
@@ -288,6 +288,7 @@ public class FeatureGenerator extends AbstractScriptGenerator {
* Based on the version of OSGi that we have in our state, add the appropriate plug-ins/fragments/features
* for the launcher.
*/
+ @SuppressWarnings("unlikely-arg-type")
private void addLauncher(PDEState state, Set<Entry> plugins, Set<Entry> fragments, Set<Entry> features) {
BundleDescription bundle = state.getResolvedBundle(BUNDLE_OSGI);
if (bundle == null)

Back to the top