Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

Commit

Permalink
removing generics from OSGiTest base class (#2274)
Browse files Browse the repository at this point in the history
since the framework requires minimum OSGi version 4.2
Generics was added  to ServiceReference in OSGi v.4.3

Signed-off-by: Miki Jankov <miki.jankov87@gmail.com>
  • Loading branch information
Mixajlo authored and kaikreuzer committed Oct 7, 2016
1 parent d72f24d commit 74d87f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import org.osgi.framework.ServiceRegistration
abstract class OSGiTest {

BundleContext bundleContext
Map<String, ServiceRegistration<?>> registeredServices = [:]
Map<String, ServiceRegistration> registeredServices = [:]

@Before
public void bindBundleContext() {
Expand Down

0 comments on commit 74d87f5

Please sign in to comment.