Skip to content

Commit

Permalink
quarkusio#5388 remove unnecessary null check
Browse files Browse the repository at this point in the history
  • Loading branch information
Simulant87 committed Nov 28, 2019
1 parent 5f4f387 commit 89dd3d6
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,6 @@ private List<String> discoverApplicationMigrations(FlywayBuildConfig flywayBuild
}
// Locations can be a comma separated list
for (String location : locations) {
if (location == null) {
continue;
}
// Strip any 'classpath:' protocol prefixes because they are assumed
// but not recognized by ClassLoader.getResources()
if (location.startsWith(CLASSPATH_APPLICATION_MIGRATIONS_PROTOCOL + ':')) {
Expand Down

0 comments on commit 89dd3d6

Please sign in to comment.