##// END OF EJS Templates
fixed recursion in Safe.Dispose with IEnumerable
cin -
r221:8808383fcb94 v2
parent child
Show More
@@ -79,7 +79,7 namespace Implab
79 79 if (obj is IDisposable) {
80 80 Dispose((IDisposable)obj);
81 81 } else if (obj is IEnumerable) {
82 Dispose((IEnumerable)obj);
82 DisposeCollection((IEnumerable)obj);
83 83 }
84 84 }
85 85
General Comments 3
Under Review
author

Auto status change to "Under Review"

Approved
author

ok, latest stable version should be in default

You need to be logged in to leave comments. Login now