Duplicate :
|
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.
|