Skip to content

Commit

Permalink
Merge pull request #17309 from zakkak/flyway-3.9-fix
Browse files Browse the repository at this point in the history
Flyway: Fix Scanner constructor substitution for Flyway 7.9.0
  • Loading branch information
gsmet committed May 18, 2021
2 parents 14ea686 + cf3c5b7 commit 2cf1f2d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ public final class ScannerSubstitutions {
@Substitute
public ScannerSubstitutions(Class<?> implementedInterface, Collection<Location> locations, ClassLoader classLoader,
Charset encoding,
boolean detectEncoding,
boolean stream,
ResourceNameCache resourceNameCache, LocationScannerCache locationScannerCache) {
ResourceNameCache resourceNameCache, LocationScannerCache locationScannerCache,
boolean throwOnMissingLocations) {
throw new IllegalStateException("'org.flywaydb.core.internal.scanner.Scanner' is never used in Quarkus");
}
}

0 comments on commit 2cf1f2d

Please sign in to comment.