Fix docs generation.
This commit is contained in:
@@ -442,7 +442,7 @@ abstract Message(Dynamic) from Dynamic to Dynamic
|
||||
// so, there's a good chance it has thousands or millions of fields,
|
||||
// which could take entire seconds to process.
|
||||
&& (object.byteLength == null || object.byteOffset == null
|
||||
|| object.buffer == null || !Std.isOfType(object.buffer, lime.utils.ArrayBuffer));
|
||||
|| object.buffer == null || !Std.isOfType(object.buffer, #if haxe4 js.lib.ArrayBuffer #else js.html.ArrayBuffer #end));
|
||||
}
|
||||
#end
|
||||
|
||||
|
||||
@@ -222,11 +222,13 @@ class ThreadPool extends WorkOutput
|
||||
}
|
||||
__activeJobs.clear();
|
||||
|
||||
#if lime_threads
|
||||
// Cancel idle threads if there are more than the minimum.
|
||||
while (idleThreads > minThreads)
|
||||
{
|
||||
__idleThreads.pop().sendMessage(new ThreadEvent(EXIT, null));
|
||||
}
|
||||
#end
|
||||
|
||||
// Clear the job queue.
|
||||
if (error != null)
|
||||
|
||||
Reference in New Issue
Block a user