Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 332131

Summary: Compile warnings in I20101207-2000 build for event and metatype
Product: [Eclipse Project] Equinox Reporter: Thomas Watson <tjwatson>
Component: CompendiumAssignee: equinox.compendium-inbox <equinox.compendium-inbox>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 3.7   
Target Milestone: 3.7 M4   
Hardware: PC   
OS: Mac OS X - Carbon (unsup.)   
Whiteboard:

Description Thomas Watson CLA 2010-12-08 09:22:32 EST
1. WARNING in /src/org/eclipse/equinox/internal/event/LogTracker.java
 (at line 58)
public void log(ServiceReference reference, int level, String message) {
ServiceReference is a raw type. References to generic type ServiceReference<S> should be parameterized
2. WARNING in /src/org/eclipse/equinox/internal/event/LogTracker.java
 (at line 62)
public synchronized void log(ServiceReference reference, int level, String message, Throwable exception) {
ServiceReference is a raw type. References to generic type ServiceReference<S> should be parameterized

1. WARNING in /src/org/eclipse/equinox/metatype/LogTracker.java
 (at line 58)
public void log(ServiceReference reference, int level, String message) {
ServiceReference is a raw type. References to generic type ServiceReference<S> should be parameterized
2. WARNING in /src/org/eclipse/equinox/metatype/LogTracker.java
 (at line 62)
public synchronized void log(ServiceReference reference, int level, String message, Throwable exception) {
ServiceReference is a raw type. References to generic type ServiceReference<S> should be parameterized
Comment 1 Thomas Watson CLA 2010-12-08 09:24:37 EST
I fixed these warnings.