Skip to content

Commit

Permalink
GH-745 - Polishing.
Browse files Browse the repository at this point in the history
Reintroduce original method in deprecated form.
  • Loading branch information
odrotbohm committed Jul 29, 2024
1 parent cc571ba commit 849cc3e
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,18 @@ static ApplicationModuleDetectionStrategy directSubPackage() {
return pkg -> pkg.getDirectSubPackages().stream();
}

/**
* A {@link ApplicationModuleDetectionStrategy} that considers packages explicitly annotated with
* {@link ApplicationModule} module base packages.
*
* @return will never be {@literal null}.
* @deprecated since 1.3. Use {@link #explicitlyAnnotated()} instead.
*/
@Deprecated(forRemoval = true)
static ApplicationModuleDetectionStrategy explictlyAnnotated() {
return explicitlyAnnotated();
}

/**
* A {@link ApplicationModuleDetectionStrategy} that considers packages explicitly annotated with
* {@link ApplicationModule} module base packages.
Expand Down

0 comments on commit 849cc3e

Please sign in to comment.