This commit is contained in:
grzegorz.russek
2015-01-10 15:32:07 +00:00
parent 2f19bf5c49
commit 708728cf62
9 changed files with 680 additions and 107 deletions

View File

@@ -32,7 +32,6 @@
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Linq;
using System.Linq.Expressions;
using System.Runtime.CompilerServices;
using System.Runtime.Serialization;
@@ -1020,9 +1019,7 @@ namespace DynamORM.Helpers.Dynamics
#region Implementation of IFinalizerDisposable
/// <summary>Releases unmanaged resources and performs other cleanup operations before
/// the <see cref="DynamORM.Helpers.Dynamics.DynamicParser.Node"/> is reclaimed by
/// garbage collection.</summary>
/// <summary>Finalizes an instance of the <see cref="Node"/> class.</summary>
~Node()
{
Dispose(false);

View File

@@ -25,7 +25,6 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
using System;
namespace DynamORM.Helpers
{
@@ -37,5 +36,4 @@ namespace DynamORM.Helpers
/// <param name="disposing">If set to <c>true</c> dispose object.</param>
void Dispose(bool disposing);
}
}
}