Aleksandr Kuzmenko 4 лет назад
Родитель
Сommit
61c0e3c3b6

+ 1 - 1
tests/threads/src/cases/TestElasticThreadPool.hx

@@ -4,7 +4,7 @@ import sys.thread.IThreadPool;
 import sys.thread.ElasticThreadPool;
 
 class TestElasticThreadPool extends misc.TestThreadPoolBase {
-	override function createThreadPool(count:Int):IThreadPool {
+	function createThreadPool(count:Int):IThreadPool {
 		return new ElasticThreadPool(count);
 	}
 

+ 1 - 1
tests/threads/src/cases/TestFixedThreadPool.hx

@@ -4,7 +4,7 @@ import sys.thread.IThreadPool;
 import sys.thread.FixedThreadPool;
 
 class TestFixedThreadPool extends misc.TestThreadPoolBase {
-	override function createThreadPool(count:Int):IThreadPool {
+	function createThreadPool(count:Int):IThreadPool {
 		return new FixedThreadPool(count);
 	}
 }