Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DriverLocatorTracker.java')
-rw-r--r--bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DriverLocatorTracker.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DriverLocatorTracker.java b/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DriverLocatorTracker.java
index 6795f86ed..f98c219b9 100644
--- a/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DriverLocatorTracker.java
+++ b/bundles/org.eclipse.equinox.device/src/org/eclipse/equinox/device/DriverLocatorTracker.java
@@ -104,7 +104,7 @@ public class DriverLocatorTracker extends ServiceTracker {
* @param reference Reference to service that has been removed.
* @param service The service object for the removed service.
*/
- public void removedService(ServiceReference reference, Object object) {
+ public void removedService(ServiceReference reference, Object service) {
if (Activator.DEBUG) {
log.log(reference, LogService.LOG_DEBUG, "DriverLocatorTracker removing service"); //$NON-NLS-1$
}
@@ -196,7 +196,7 @@ public class DriverLocatorTracker extends ServiceTracker {
/**
* Get an <code>InputStream</code> from which the driver bundle providing a driver with the giving ID can be installed.
*
- * @param id the ID of the driver that needs to be installed.
+ * @param driver_id the ID of the driver that needs to be installed.
* bundle can be installed
*/

Back to the top