Skip to content

Commit

Permalink
Merge pull request #32195 from gastaldi/flyway_sysout
Browse files Browse the repository at this point in the history
Remove misplaced System.out.println
  • Loading branch information
gsmet committed Mar 28, 2023
2 parents 5c5e821 + a047ac1 commit 0f6cf71
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class FlywayDevConsoleRecorder {
public Handler<RoutingContext> datasourcesHandler() {
return new DevConsolePostHandler() {
@Override
protected void handlePost(RoutingContext event, MultiMap form) throws Exception {
protected void handlePost(RoutingContext event, MultiMap form) {
String datasource = form.get("datasource");
String operation = form.get("operation");
Collection<FlywayContainer> flywayContainers = new FlywayContainersSupplier().get();
Expand Down Expand Up @@ -80,7 +80,6 @@ protected void handlePostAsync(RoutingContext event, MultiMap form) throws Excep
flashMessage(event, "Datasource has no locations configured");
return;
}
System.out.println(found.get());

List<Path> resourcesDir = DevConsoleManager.getHotReplacementContext().getResourcesDir();
if (resourcesDir.isEmpty()) {
Expand Down

0 comments on commit 0f6cf71

Please sign in to comment.