File tree Expand file tree Collapse file tree 3 files changed +2
-21
lines changed
NuGet/JavaScriptEngineSwitcher.ChakraCore
src/JavaScriptEngineSwitcher.ChakraCore Expand file tree Collapse file tree 3 files changed +2
-21
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ This package does not contain the native implementations of ChakraCore. Therefor
2020 * JavaScriptEngineSwitcher.ChakraCore.Native.debian-x64
2121 * JavaScriptEngineSwitcher.ChakraCore.Native.osx-x64</description >
2222 <summary >JavaScriptEngineSwitcher.ChakraCore contains adapter `ChakraCoreJsEngine` (wrapper for the ChakraCore).</summary >
23- <releaseNotes >ChakraCore was updated to version 1.4.1 .</releaseNotes >
23+ <releaseNotes >Fixed a error causing a crash during finalization .</releaseNotes >
2424 <copyright >Copyright (c) 2013-2017 Andrey Taritsyn - http://www.taritsyn.ru</copyright >
2525 <language >en-US</language >
2626 <tags >JavaScriptEngineSwitcher JavaScript ECMAScript ChakraCore</tags >
Original file line number Diff line number Diff line change 3030 =============
3131 RELEASE NOTES
3232 =============
33- ChakraCore was updated to version 1.4.1 .
33+ Fixed a error causing a crash during finalization .
3434
3535 =============
3636 DOCUMENTATION
Original file line number Diff line number Diff line change @@ -68,14 +68,6 @@ public ScriptDispatcher()
6868 _thread . Start ( ) ;
6969 }
7070
71- /// <summary>
72- /// Destructs an instance of script dispatcher
73- /// </summary>
74- ~ ScriptDispatcher ( )
75- {
76- Dispose ( false ) ;
77- }
78-
7971
8072 private void VerifyNotDisposed ( )
8173 {
@@ -213,17 +205,6 @@ public void Invoke(Action action)
213205 /// Destroys object
214206 /// </summary>
215207 public void Dispose ( )
216- {
217- Dispose ( true /* disposing */ ) ;
218- GC . SuppressFinalize ( this ) ;
219- }
220-
221- /// <summary>
222- /// Destroys object
223- /// </summary>
224- /// <param name="disposing">Flag, allowing destruction of
225- /// managed objects contained in fields of class</param>
226- private void Dispose ( bool disposing )
227208 {
228209 if ( _disposedFlag . Set ( ) )
229210 {
You can’t perform that action at this time.
0 commit comments