1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-09 01:05:38 +02:00

new method removeItem(Object key)

This commit is contained in:
Alain Magloire 2002-11-12 20:52:39 +00:00
parent 10cc1418e2
commit fbea286a2e

View file

@ -34,6 +34,10 @@ public class RequestList {
} }
} }
public boolean removeItem(Object key) {
return list.remove(key);
}
public void addItem(IResource item) { public void addItem(IResource item) {
//print("in addItem() - entering"); //print("in addItem() - entering");
synchronized (list) { synchronized (list) {