Skip to content

Commit

Permalink
Fix checkstyle errors
Browse files Browse the repository at this point in the history
  • Loading branch information
philwebb committed Sep 24, 2015
1 parent b95bb54 commit 028fc04
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -37,15 +37,15 @@ public class FlywayMigrationInitializer implements InitializingBean, Ordered {
private int order = 0;

/**
* Create a new {@link FlywayMigrationInitializer}
* Create a new {@link FlywayMigrationInitializer} instance.
* @param flyway the flyway instance
*/
public FlywayMigrationInitializer(Flyway flyway) {
this(flyway, null);
}

/**
* Create a new {@link FlywayMigrationInitializer}
* Create a new {@link FlywayMigrationInitializer} instance.
* @param flyway the flyway instance
* @param migrationStrategy the migration stragety or {@code null}
*/
Expand Down
Expand Up @@ -347,7 +347,7 @@ public void setProperties(Map<String, String> properties) {

private static class DataSourceBeanCreationException extends BeanCreationException {

public DataSourceBeanCreationException(EmbeddedDatabaseConnection connection,
DataSourceBeanCreationException(EmbeddedDatabaseConnection connection,
Environment environment, String property) {
super(getMessage(connection, environment, property));
}
Expand Down
Expand Up @@ -31,8 +31,8 @@
*
* @author Dave Syer
* @author Phillip Webb
* @see ErrorAttributes
* @since 1.3.0
* @see ErrorAttributes
*/
public abstract class AbstractErrorController implements ErrorController {

Expand Down

0 comments on commit 028fc04

Please sign in to comment.