diff Implab/JSON/JSONXmlReader.cs @ 85:abe260860bd6 v2

fixed JSONXmlReader disposing under ugly mono ObjectPool is made abstract
author cin
date Tue, 30 Sep 2014 16:05:35 +0400
parents 05e6468f066f
children
line wrap: on
line diff
--- a/Implab/JSON/JSONXmlReader.cs	Tue Sep 30 08:20:45 2014 +0400
+++ b/Implab/JSON/JSONXmlReader.cs	Tue Sep 30 16:05:35 2014 +0400
@@ -301,6 +301,9 @@
         }
 
         protected override void Dispose(bool disposing) {
+            #if MONO
+            disposing = true;
+            #endif
             if (disposing) {
                 m_parser.Dispose();
             }