Skip to content
This repository was archived by the owner on Dec 13, 2023. It is now read-only.

Commit 49ef358

Browse files
committed
Fix javadoc for lt and gt character
1 parent d66bb83 commit 49ef358

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

src/main/java/dev/miku/r2dbc/mysql/ColumnNameSet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
import java.util.function.Predicate;
3131

3232
/**
33-
* An implementation of {@link Set<String>} for {@code RowMetadata.getColumnNames} results.
33+
* An implementation of {@link Set}{@code <}{@link String}{@code >} for {@code RowMetadata.getColumnNames} results.
3434
*
3535
* @see MySqlNames column name searching rules.
3636
*/

src/main/java/dev/miku/r2dbc/mysql/MySqlConnectionFactoryProvider.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -157,13 +157,14 @@ public final class MySqlConnectionFactoryProvider implements ConnectionFactoryPr
157157
* parametrized statements and text query for simple statements. If it is {@code false}, driver will
158158
* use client preparing for parametrized statements and text query for simple statements.
159159
* <p>
160-
* The value can be a {@link Predicate<String>}. If it is set, driver will server preparing for
161-
* parametrized statements, it configures whether to prefer prepare execution on a statement-by-statement
162-
* basis (simple statements). The {@link Predicate<String>} accepts the simple SQL query string and
163-
* returns a {@code boolean} flag indicating preference.
160+
* The value can be a {@link Predicate}{@code <}{@link String}{@code >}. If it is set, driver will server
161+
* preparing for parametrized statements, it configures whether to prefer prepare execution on a statement-
162+
* by-statement basis (simple statements). The {@link Predicate}{@code <}{@link String}{@code >} accepts
163+
* the simple SQL query string and returns a {@code boolean} flag indicating preference.
164164
* <p>
165165
* The value can be a {@link String}. If it is set, driver will try to convert it to {@link Boolean}
166-
* or an instance of {@link Predicate<String>} which use reflection with a public no-args constructor.
166+
* or an instance of {@link Predicate}{@code <}{@link String}{@code >} which use reflection with a public
167+
* no-args constructor.
167168
*
168169
* @since 0.8.1
169170
*/

src/main/java/dev/miku/r2dbc/mysql/codec/ByteArrayCodec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
import static dev.miku.r2dbc.mysql.util.InternalArrays.EMPTY_BYTES;
3131

3232
/**
33-
* Codec for {@link byte[]}.
33+
* Codec for {@code byte[]}.
3434
*/
3535
final class ByteArrayCodec extends AbstractClassedCodec<byte[]> {
3636

src/main/java/dev/miku/r2dbc/mysql/codec/SetCodec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
import static dev.miku.r2dbc.mysql.util.InternalArrays.EMPTY_STRINGS;
3939

4040
/**
41-
* Codec for {@link Set<String>}, {@link Set<Enum>} and {@link String[]}.
41+
* Codec for {@link Set}{@code <}{@link String}{@code >}, {@link Set}{@code <}{@link Enum}{@code >} and {@link String}{@code []}.
4242
*/
4343
final class SetCodec implements ParametrizedCodec<String[]> {
4444

0 commit comments

Comments
 (0)