Skip to content

Commit

Permalink
Fix duplicate words in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
dreis2211 committed Nov 28, 2019
1 parent 77bf492 commit ae37050
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ public void setInstalledBy(String installedBy) {
* <p>Note that this is only applicable for PostgreSQL, Aurora PostgreSQL, SQL Server and SQLite which all have
* statements that do not run at all within a transaction.</p>
* <p>This is not to be confused with implicit transaction, as they occur in MySQL or Oracle, where even though a
* DDL statement was run within within a transaction, the database will issue an implicit commit before and after
* DDL statement was run within a transaction, the database will issue an implicit commit before and after
* its execution.</p>
*
* @param mixed {@code true} if mixed migrations should be allowed. {@code false} if an error should be thrown instead. (default: {@code false})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public interface Configuration {
String getBaselineDescription();

/**
* Retrieves the The custom MigrationResolvers to be used in addition to the built-in ones for resolving Migrations to apply.
* Retrieves the custom MigrationResolvers to be used in addition to the built-in ones for resolving Migrations to apply.
*
* @return The custom MigrationResolvers to be used in addition to the built-in ones for resolving Migrations to apply. An empty array if none.
* (default: none)
Expand Down Expand Up @@ -384,7 +384,7 @@ public interface Configuration {
* <p>Note that this is only applicable for PostgreSQL, Aurora PostgreSQL, SQL Server and SQLite which all have
* statements that do not run at all within a transaction.</p>
* <p>This is not to be confused with implicit transaction, as they occur in MySQL or Oracle, where even though a
* DDL statement was run within within a transaction, the database will issue an implicit commit before and after
* DDL statement was run within a transaction, the database will issue an implicit commit before and after
* its execution.</p>
*
* @return {@code true} if mixed migrations should be allowed. {@code false} if an error should be thrown instead. (default: {@code false})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ public FluentConfiguration installedBy(String installedBy) {
* <p>Note that this is only applicable for PostgreSQL, Aurora PostgreSQL, SQL Server and SQLite which all have
* statements that do not run at all within a transaction.</p>
* <p>This is not to be confused with implicit transaction, as they occur in MySQL or Oracle, where even though a
* DDL statement was run within within a transaction, the database will issue an implicit commit before and after
* DDL statement was run within a transaction, the database will issue an implicit commit before and after
* its execution.</p>
*
* @param mixed {@code true} if mixed migrations should be allowed. {@code false} if an error should be thrown instead. (default: {@code false})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ private void disableFlashbackArchiveForFbaTrackedTables() throws SQLException {
* Checks whether Oracle Locator metadata exists for the schema.
*
* @return {@code true} if it exists, {@code false} if not.
* @throws SQLException when checking checking metadata existence failed.
* @throws SQLException when checking metadata existence failed.
*/
private boolean locatorMetadataExists() throws SQLException {
return database.queryReturnsRows("SELECT * FROM ALL_SDO_GEOM_METADATA WHERE OWNER = ?", name);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ public class FlywayExtension {
* <p>Note that this is only applicable for PostgreSQL, Aurora PostgreSQL, SQL Server and SQLite which all have
* statements that do not run at all within a transaction.</p>
* <p>This is not to be confused with implicit transaction, as they occur in MySQL or Oracle, where even though a
* DDL statement was run within within a transaction, the database will issue an implicit commit before and after
* DDL statement was run within a transaction, the database will issue an implicit commit before and after
* its execution.</p>
* <p>{@code true} if mixed migrations should be allowed. {@code false} if an error should be thrown instead. (default: {@code false})</p>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ public abstract class AbstractFlywayTask extends DefaultTask {
* <p>Note that this is only applicable for PostgreSQL, Aurora PostgreSQL, SQL Server and SQLite which all have
* statements that do not run at all within a transaction.</p>
* <p>This is not to be confused with implicit transaction, as they occur in MySQL or Oracle, where even though a
* DDL statement was run within within a transaction, the database will issue an implicit commit before and after
* DDL statement was run within a transaction, the database will issue an implicit commit before and after
* its execution.</p>
* <p>{@code true} if mixed migrations should be allowed. {@code false} if an error should be thrown instead. (default: {@code false})</p>
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ abstract class AbstractFlywayMojo extends AbstractMojo {
* <p>Note that this is only applicable for PostgreSQL, Aurora PostgreSQL, SQL Server and SQLite which all have
* statements that do not run at all within a transaction.</p>
* <p>This is not to be confused with implicit transaction, as they occur in MySQL or Oracle, where even though a
* DDL statement was run within within a transaction, the database will issue an implicit commit before and after
* DDL statement was run within a transaction, the database will issue an implicit commit before and after
* its execution.</p>
* {@code true} if mixed migrations should be allowed. {@code false} if an error should be thrown instead. (default: {@code false})
* <p>Also configurable with Maven or System Property: ${flyway.mixed}</p>
Expand Down

0 comments on commit ae37050

Please sign in to comment.