Browse Source

Remove duplicated "the" in JavaDoc.

Original pull request #1840
3.3.x
Sanghyuk Jung 1 year ago committed by Jens Schauder
parent
commit
72496ba594
No known key found for this signature in database
GPG Key ID: 74F6C554AE971567
  1. 2
      spring-data-r2dbc/src/test/java/org/springframework/data/r2dbc/repository/AbstractR2dbcRepositoryIntegrationTests.java
  2. 2
      spring-data-r2dbc/src/test/java/org/springframework/data/r2dbc/repository/AbstractR2dbcRepositoryWithMixedCaseNamesIntegrationTests.java
  3. 2
      spring-data-r2dbc/src/test/java/org/springframework/data/r2dbc/repository/support/AbstractSimpleR2dbcRepositoryIntegrationTests.java

2
spring-data-r2dbc/src/test/java/org/springframework/data/r2dbc/repository/AbstractR2dbcRepositoryIntegrationTests.java

@ -95,7 +95,7 @@ public abstract class AbstractR2dbcRepositoryIntegrationTests extends R2dbcInteg
protected abstract ConnectionFactory createConnectionFactory(); protected abstract ConnectionFactory createConnectionFactory();
/** /**
* Returns the the CREATE TABLE statement for table {@code legoset} with the following three columns: * Returns the CREATE TABLE statement for table {@code legoset} with the following three columns:
* <ul> * <ul>
* <li>id integer (primary key), not null, auto-increment</li> * <li>id integer (primary key), not null, auto-increment</li>
* <li>name varchar(255), nullable</li> * <li>name varchar(255), nullable</li>

2
spring-data-r2dbc/src/test/java/org/springframework/data/r2dbc/repository/AbstractR2dbcRepositoryWithMixedCaseNamesIntegrationTests.java

@ -88,7 +88,7 @@ public abstract class AbstractR2dbcRepositoryWithMixedCaseNamesIntegrationTests
protected abstract String getCreateTableStatement(); protected abstract String getCreateTableStatement();
/** /**
* Returns the the DROP TABLE statement for table {@code LegoSet}. * Returns the DROP TABLE statement for table {@code LegoSet}.
* *
* @return the DROP TABLE statement for table {@code LegoSet}. * @return the DROP TABLE statement for table {@code LegoSet}.
*/ */

2
spring-data-r2dbc/src/test/java/org/springframework/data/r2dbc/repository/support/AbstractSimpleR2dbcRepositoryIntegrationTests.java

@ -110,7 +110,7 @@ public abstract class AbstractSimpleR2dbcRepositoryIntegrationTests extends R2db
protected abstract DataSource createDataSource(); protected abstract DataSource createDataSource();
/** /**
* Returns the the CREATE TABLE statement for table {@code legoset} with the following three columns: * Returns the CREATE TABLE statement for table {@code legoset} with the following three columns:
* <ul> * <ul>
* <li>id integer (primary key), not null, auto-increment</li> * <li>id integer (primary key), not null, auto-increment</li>
* <li>name varchar(255), nullable</li> * <li>name varchar(255), nullable</li>

Loading…
Cancel
Save