Browse Source

ListenerList now uses a MapList not WeakMapList.

Should fix FRW issues properly. Issue 934.

git-svn-id: http://svn.dmdirc.com/trunk@3610 00569f92-eb28-0410-84fd-f71c24880f
tags/0.6
Chris Smith 16 years ago
parent
commit
06cb2b25d8
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/com/dmdirc/util/ListenerList.java

+ 2
- 2
src/com/dmdirc/util/ListenerList.java View File

@@ -33,8 +33,8 @@ import java.util.List;
33 33
 public class ListenerList {
34 34
     
35 35
     /** The map of class->listener or string->listener that we're using. */
36
-    private final WeakMapList<Object, Object> listeners
37
-            = new WeakMapList<Object, Object>();
36
+    private final MapList<Object, Object> listeners
37
+            = new MapList<Object, Object>();
38 38
     
39 39
     /**
40 40
      * Creates a new instance of ListenerList.

Loading…
Cancel
Save