From f703ca6c03495aae2fa1271ba471688b1aed2034 Mon Sep 17 00:00:00 2001 From: Karthik Ramgopal Date: Mon, 22 Jan 2024 13:43:28 -0800 Subject: [PATCH] Fix javadoc --- .../linkedin/avroutil1/builder/util/StreamUtil.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/avro-builder/builder-spi/src/main/java/com/linkedin/avroutil1/builder/util/StreamUtil.java b/avro-builder/builder-spi/src/main/java/com/linkedin/avroutil1/builder/util/StreamUtil.java index 6251d998..0ef76be0 100644 --- a/avro-builder/builder-spi/src/main/java/com/linkedin/avroutil1/builder/util/StreamUtil.java +++ b/avro-builder/builder-spi/src/main/java/com/linkedin/avroutil1/builder/util/StreamUtil.java @@ -40,8 +40,8 @@ private StreamUtil() { /** * A convenience {@link Collector} used for executing parallel computations on a custom {@link Executor} * and returning a {@link Stream} instance returning results as they arrive. - *
- * For the parallelism of 1, the stream is executed by the calling thread. + * + *

For the parallelism of 1, the stream is executed by the calling thread.

* * @param mapper a transformation to be performed in parallel * @param parallelism the max parallelism level @@ -57,9 +57,9 @@ private StreamUtil() { /** * A convenience {@link Collector} used for executing parallel computations on a custom {@link Executor} * and returning a {@link Stream} instance returning results as they arrive. - *
- * For the parallelism of 1 or if the size of the elements is <= batchSize, the stream is executed by the calling - * thread. + * + *

For the parallelism of 1 or if the size of the elements is <= batchSize, the stream is executed by the calling + * thread.

* * @param mapper a transformation to be performed in parallel * @param parallelism the max parallelism level