bennyxqg / bulk-loader

Automatically exported from code.google.com/p/bulk-loader
0 stars 0 forks source link

Dictionary weak referencing is getting reset to strong reference #98

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
public var _contents : Dictionary = new Dictionary(true);

The '_contents' is set to use weak reference but later on in the removeAll
() method it gets set back to a strong reference:

_contents = new Dictionary();

could this effect Garbage Collection?

thanks paddy ;)

Original issue reported on code.google.com by keanepa...@gmail.com on 6 Aug 2009 at 2:37

GoogleCodeExporter commented 9 years ago
Fixed as of revision 294, thanks for the report.

Original comment by debert on 7 Sep 2009 at 4:56