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
20
20
* JavaScriptEngineSwitcher.ChakraCore.Native.debian-x64
21
21
* JavaScriptEngineSwitcher.ChakraCore.Native.osx-x64</description >
22
22
<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 >
24
24
<copyright >Copyright (c) 2013-2017 Andrey Taritsyn - http://www.taritsyn.ru</copyright >
25
25
<language >en-US</language >
26
26
<tags >JavaScriptEngineSwitcher JavaScript ECMAScript ChakraCore</tags >
Original file line number Diff line number Diff line change 30
30
=============
31
31
RELEASE NOTES
32
32
=============
33
- ChakraCore was updated to version 1.4.1 .
33
+ Fixed a error causing a crash during finalization .
34
34
35
35
=============
36
36
DOCUMENTATION
Original file line number Diff line number Diff line change @@ -68,14 +68,6 @@ public ScriptDispatcher()
68
68
_thread . Start ( ) ;
69
69
}
70
70
71
- /// <summary>
72
- /// Destructs an instance of script dispatcher
73
- /// </summary>
74
- ~ ScriptDispatcher ( )
75
- {
76
- Dispose ( false ) ;
77
- }
78
-
79
71
80
72
private void VerifyNotDisposed ( )
81
73
{
@@ -213,17 +205,6 @@ public void Invoke(Action action)
213
205
/// Destroys object
214
206
/// </summary>
215
207
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 )
227
208
{
228
209
if ( _disposedFlag . Set ( ) )
229
210
{
You can’t perform that action at this time.
0 commit comments