Skip to content

Commit a3612a3

Browse files
ngocnhan-tran1996schauder
authored andcommitted
Polish javadoc
Original pull request #2206 Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
1 parent ccaa562 commit a3612a3

File tree

8 files changed

+11
-14
lines changed

8 files changed

+11
-14
lines changed

spring-data-jdbc/src/main/java/org/springframework/data/jdbc/core/convert/MappingJdbcConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public class MappingJdbcConverter extends MappingRelationalConverter implements
7878
* Creates a new {@link MappingJdbcConverter} given {@link MappingContext} and a {@link JdbcTypeFactory#unsupported()
7979
* no-op type factory} throwing {@link UnsupportedOperationException} on type creation. Use
8080
* {@link #MappingJdbcConverter(RelationalMappingContext, RelationResolver, CustomConversions, JdbcTypeFactory)}
81-
* (MappingContext, RelationResolver, JdbcTypeFactory)} to convert arrays and large objects into JDBC-specific types.
81+
* to convert arrays and large objects into JDBC-specific types.
8282
*
8383
* @param context must not be {@literal null}.
8484
* @param relationResolver used to fetch additional relations from the database. Must not be {@literal null}.

spring-data-jdbc/src/test/java/org/springframework/data/jdbc/testing/CombiningActiveProfileResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import org.springframework.test.context.support.DefaultActiveProfilesResolver;
2525

2626
/**
27-
* A {@link ActiveProfilesResolver} combining the profile configurations from environement, system properties and
27+
* A {@link ActiveProfilesResolver} combining the profile configurations from environment, system properties and
2828
* {@link org.springframework.test.context.ActiveProfiles} annotations.
2929
*
3030
* @author Jens Schauder

spring-data-r2dbc/src/main/java/org/springframework/data/r2dbc/config/AbstractR2dbcConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ public ReactiveDataAccessStrategy reactiveDataAccessStrategy(R2dbcConverter conv
218218

219219
/**
220220
* Creates a {@link org.springframework.data.r2dbc.convert.R2dbcConverter} using the configured
221-
* {@link #r2dbcMappingContext(Optional, R2dbcCustomConversions, RelationalManagedTypes)} R2dbcMappingContext}.
221+
* {@link #r2dbcMappingContext(Optional, R2dbcCustomConversions, RelationalManagedTypes) R2dbcMappingContext}.
222222
*
223223
* @param mappingContext the configured {@link R2dbcMappingContext}.
224224
* @param r2dbcCustomConversions customized R2DBC conversions.

spring-data-r2dbc/src/main/java/org/springframework/data/r2dbc/mapping/OutboundRow.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public OutboundRow(SqlIdentifier key, Parameter value) {
9696
* expression:
9797
*
9898
* <pre class="code">
99-
* row.append("a", 1).append("b", 2)}
99+
* row.append("a", 1).append("b", 2)
100100
* </pre>
101101
*
102102
* @param key key.
@@ -113,7 +113,7 @@ public OutboundRow append(String key, Parameter value) {
113113
* expression:
114114
*
115115
* <pre class="code">
116-
* row.append("a", 1).append("b", 2)}
116+
* row.append("a", 1).append("b", 2)
117117
* </pre>
118118
*
119119
* @param key key.

spring-data-relational/src/main/java/org/springframework/data/relational/core/sql/AssignValue.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
* Assign a {@link Expression} to a {@link Column}.
2222
* <p>
23-
* Results in a rendered assignment: {@code <column> = <value>} (e.g. {@code col = 'foo'}.
23+
* Results in a rendered assignment: {@code <column> = <value>} (e.g. {@code col = 'foo'}).
2424
* </p>
2525
* @author Mark Paluch
2626
* @since 1.1

spring-data-relational/src/main/java/org/springframework/data/relational/core/sql/Comparison.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/**
2121
* Comparing {@link Condition} comparing two {@link Expression}s.
2222
* <p>
23-
* Results in a rendered condition: {@code <left> <comparator> <right>} (e.g. {@code col = 'predicate'}.
23+
* Results in a rendered condition: {@code <left> <comparator> <right>} (e.g. {@code col = 'predicate'}).
2424
* </p>
2525
*
2626
* @author Mark Paluch

spring-data-relational/src/main/java/org/springframework/data/relational/core/sql/TableLike.java

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* A segment that can be used as table in a query.
2727
*
2828
* @author Jens Schauder
29-
* @Since 2.3
29+
* @since 2.3
3030
*/
3131
public interface TableLike extends Segment {
3232
/**
@@ -122,10 +122,7 @@ default List<Column> columns(Collection<String> names) {
122122
}
123123

124124
/**
125-
* Creates a {@link AsteriskFromTable} maker selecting all columns from this {@link Table} (e.g. {@code SELECT
126-
*
127-
<table>
128-
* .*}.
125+
* Creates a {@link AsteriskFromTable} maker selecting all columns from this {@link Table} (e.g. {@code SELECT <table>.*}).
129126
*
130127
* @return the select all marker for this {@link Table}.
131128
*/

spring-data-relational/src/main/java/org/springframework/data/relational/core/sql/render/NameRenderer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ static CharSequence render(RenderContext context, Aliased aliased) {
6363
}
6464

6565
/**
66-
* Render the {@link Table#getReferenceName()} table reference name} with considering the
66+
* Render the {@link Table#getReferenceName() table reference name} with considering the
6767
* {@link RenderNamingStrategy#getReferenceName(TableLike) naming strategy}.
6868
*/
6969
static CharSequence reference(RenderContext context, TableLike table) {
7070
return render(context, context.getNamingStrategy().getReferenceName(table));
7171
}
7272

7373
/**
74-
* Render the {@link Column#getReferenceName()} column reference name} with considering the
74+
* Render the {@link Column#getReferenceName() column reference name} with considering the
7575
* {@link RenderNamingStrategy#getReferenceName(Column) naming strategy}.
7676
*/
7777
static CharSequence reference(RenderContext context, Column column) {

0 commit comments

Comments
 (0)