ICU-1949 service

X-SVN-Rev: 9082
This commit is contained in:
Doug Felt 2002-07-10 22:12:24 +00:00
parent 92158dfa0e
commit fb41aa66b9

View File

@ -109,16 +109,13 @@ public abstract class ICUNotifier {
* The notification thread.
*/
private class NotifyThread extends Thread {
List queue;
List queue = new LinkedList();
/**
* Queue the notification on the thread.
*/
public void queue(Object[] list) {
synchronized (this) {
if (queue == null) {
queue = new LinkedList();
}
queue.add(list);
notify();
}