-
Bug
-
Resolution: Fixed
-
P4
-
8u31
-
b88
-
x86
-
windows_8
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8142176 | emb-9 | Doug Lea | P4 | Resolved | Fixed | team |
FULL PRODUCT VERSION :
A DESCRIPTION OF THE PROBLEM :
In java.util.concurrent.Executor, the code in the phrase:
For example, rather than invoking new Thread(new(RunnableTask())).start() for each of a set of tasks
contains 2 erroneous parentheses & should be:
new Thread(new RunnableTask()).start()
REPRODUCIBILITY :
This bug can be reproduced always.
A DESCRIPTION OF THE PROBLEM :
In java.util.concurrent.Executor, the code in the phrase:
For example, rather than invoking new Thread(new(RunnableTask())).start() for each of a set of tasks
contains 2 erroneous parentheses & should be:
new Thread(new RunnableTask()).start()
REPRODUCIBILITY :
This bug can be reproduced always.
- backported by
-
JDK-8142176 javadoc typo in java.util.concurrent.Executor
-
- Resolved
-
- duplicates
-
JDK-8134853 Bulk integration of java.util.concurrent and related java.util classes
-
- Resolved
-