[Java] Fix java doc building error (#10757)

This commit is contained in:
chaokunyang
2020-09-14 17:44:45 +08:00
committed by GitHub
parent 4c03f7ca2f
commit 1aad8aa39c
7 changed files with 31 additions and 8 deletions
@@ -89,7 +89,7 @@ public class BaseActorCreator<T extends BaseActorCreator> {
* Set the max number of concurrent calls to allow for this actor.
* <p>
* The max concurrency defaults to 1 for threaded execution.
* Note that the execution order is not guaranteed when max_concurrency > 1.
* Note that the execution order is not guaranteed when {@code max_concurrency > 1}.
*
* @param maxConcurrency The max number of concurrent calls to allow for this actor.
* @return self
@@ -129,7 +129,7 @@ public class ActorCreationOptions extends BaseTaskOptions {
* Set the max number of concurrent calls to allow for this actor.
* <p>
* The max concurrency defaults to 1 for threaded execution.
* Note that the execution order is not guaranteed when max_concurrency > 1.
* Note that the execution order is not guaranteed when {@code max_concurrency > 1}.
*
* @param maxConcurrency The max number of concurrent calls to allow for this actor.
* @return self