Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
Bug 332131 - Compile warnings in I20101207-2000 build for event and metatype
Summary: Compile warnings in I20101207-2000 build for event and metatype
Status: RESOLVED FIXED
Alias: None
Product: Equinox
Classification: Eclipse Project
Component: Compendium (show other bugs)
Version: 3.7   Edit
Hardware: PC Mac OS X - Carbon (unsup.)
: P3 normal (vote)
Target Milestone: 3.7 M4   Edit
Assignee: equinox.compendium-inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-12-08 09:22 EST by Thomas Watson CLA
Modified: 2010-12-08 09:24 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.