Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2017-11-14 05:19:01 +0000
committerAlexander Kurtakov2017-11-14 05:21:14 +0000
commit1a60d4bbf10c52fca4f7f6d07929639cdcb4ee01 (patch)
tree128776f358e29bde7539e12aaacf3211355c3ba6
parentb2a818de0268db42a685fcbdb413407f1e4f0232 (diff)
downloadrt.equinox.bundles-1a60d4bbf10c52fca4f7f6d07929639cdcb4ee01.tar.gz
rt.equinox.bundles-1a60d4bbf10c52fca4f7f6d07929639cdcb4ee01.tar.xz
rt.equinox.bundles-1a60d4bbf10c52fca4f7f6d07929639cdcb4ee01.zip
Bug 527189 - Move jsp.* bundles to Java 8
Fix warning in nightly build. Change-Id: Icfb16ae452e1d8497e6968f02001c7ce0c1013c8 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.equinox.jsp.jasper.registry/src/org/eclipse/equinox/jsp/jasper/registry/JSPFactory.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.jsp.jasper.registry/src/org/eclipse/equinox/jsp/jasper/registry/JSPFactory.java b/bundles/org.eclipse.equinox.jsp.jasper.registry/src/org/eclipse/equinox/jsp/jasper/registry/JSPFactory.java
index 30d0d22b0..6259c917a 100644
--- a/bundles/org.eclipse.equinox.jsp.jasper.registry/src/org/eclipse/equinox/jsp/jasper/registry/JSPFactory.java
+++ b/bundles/org.eclipse.equinox.jsp.jasper.registry/src/org/eclipse/equinox/jsp/jasper/registry/JSPFactory.java
@@ -34,6 +34,7 @@ public class JSPFactory implements IExecutableExtensionFactory, IExecutableExten
private IConfigurationElement config;
private String bundleResourcePath;
+ @SuppressWarnings("unchecked")
@Override
public void setInitializationData(IConfigurationElement config, String propertyName, Object data) throws CoreException {
this.config = config;

Back to the top