Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-01-22 08:06:49 +0000
committerAlexander Kurtakov2019-01-22 08:06:49 +0000
commitb0f4cf06e9910cc4967b404df45b2edba390636c (patch)
tree480ca99fa5ab566c2ce0e902744fda2bea59e042
parent751b0399af531b9d69a85060649da4d71e4bf5f4 (diff)
downloadrt.equinox.bundles-b0f4cf06e9910cc4967b404df45b2edba390636c.tar.gz
rt.equinox.bundles-b0f4cf06e9910cc4967b404df45b2edba390636c.tar.xz
rt.equinox.bundles-b0f4cf06e9910cc4967b404df45b2edba390636c.zip
Bug 538717 - Update to felix.scr 2.1.14
Yet another compile warning. Change-Id: Ib0af75fb628e39dac039917362f2002e4c1fd858 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/internal/ds/ScrServiceImpl.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/internal/ds/ScrServiceImpl.java b/bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/internal/ds/ScrServiceImpl.java
index a4ee8e76c..d122fdec0 100644
--- a/bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/internal/ds/ScrServiceImpl.java
+++ b/bundles/org.eclipse.equinox.ds/src/org/eclipse/equinox/internal/ds/ScrServiceImpl.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2017 IBM Corporation and others.
+ * Copyright (c) 2017, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -204,7 +204,7 @@ public class ScrServiceImpl implements ScrService {
}
@Override
- public ComponentInstance getComponentInstance() {
+ public ComponentInstance<Object> getComponentInstance() {
throw new UnsupportedOperationException("Not supported."); //$NON-NLS-1$
}

Back to the top