Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2017-03-29 14:16:33 +0000
committerThomas Watson2017-03-29 14:16:33 +0000
commit035a4d8dee43019c4415be941599ce3c9fefd817 (patch)
treea19a7acf2819ead8bb59d49cd007eed9cc4f7894 /bundles
parent60a423633ebd7246d33e8f95eb642e1dbeb2ea07 (diff)
downloadrt.equinox.framework-035a4d8dee43019c4415be941599ce3c9fefd817.tar.gz
rt.equinox.framework-035a4d8dee43019c4415be941599ce3c9fefd817.tar.xz
rt.equinox.framework-035a4d8dee43019c4415be941599ce3c9fefd817.zip
Bug 514411 - Latest build has warnings in EventListeners::removeListenerY20170330-1000I20170329-2000
Change-Id: I88660db08e1f84674308b1b6361b4f19edefe414 Signed-off-by: Thomas Watson <tjwatson@us.ibm.com>
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/framework/eventmgr/EventListeners.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/framework/eventmgr/EventListeners.java b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/framework/eventmgr/EventListeners.java
index e40ce2920..25ad516fc 100644
--- a/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/framework/eventmgr/EventListeners.java
+++ b/bundles/org.eclipse.osgi/supplement/src/org/eclipse/osgi/framework/eventmgr/EventListeners.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2003, 2016 IBM Corporation and others.
+ * Copyright (c) 2003, 2017 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -67,7 +67,7 @@ public class EventListeners<K, V> {
* @param listener This is the listener object to be removed from the list.
* @throws IllegalArgumentException If listener is null.
*/
- public void removeListener(V listener) {
+ public void removeListener(K listener) {
list.remove(listener);
}

Back to the top