We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fcd604a + 2b4b2b8 commit 0f5b1e8Copy full SHA for 0f5b1e8
src/actors/scala/actors/scheduler/ThreadPoolConfig.scala
@@ -42,10 +42,7 @@ private[actors] object ThreadPoolConfig {
42
(propIsSetTo("actors.enableForkJoin", "true") || {
43
Debug.info(this+": java.version = "+javaVersion)
44
Debug.info(this+": java.vm.vendor = "+javaVmVendor)
45
-
46
- // on IBM J9 1.6 do not use ForkJoinPool
47
- // XXX this all needs to go into Properties.
48
- isJavaAtLeast("1.6") && ((javaVmVendor contains "Oracle") || (javaVmVendor contains "Sun") || (javaVmVendor contains "Apple"))
+ isJavaAtLeast("1.6")
49
})
50
catch {
51
case _: SecurityException => false
0 commit comments