Skip to content

Commit

Permalink
BQModuleProvider.dependencies() got deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
andrus committed Nov 24, 2023
1 parent 1c1714a commit 2e00c7d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public BuiltModule buildModule() {
}

@Override
@Deprecated(since = "3.0", forRemoval = true)
public Collection<BQModuleProvider> dependencies() {
return asList(
new MvcModuleProvider(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public BuiltModule buildModule() {
}

@Override
@Deprecated(since = "3.0", forRemoval = true)
public Collection<BQModuleProvider> dependencies() {
return Collections.singletonList(
new JerseyModuleProvider()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public BuiltModule buildModule() {
}

@Override
@Deprecated(since = "3.0", forRemoval = true)
public Collection<BQModuleProvider> dependencies() {
return asList(
new MvcModuleProvider(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public BuiltModule buildModule() {
}

@Override
@Deprecated(since = "3.0", forRemoval = true)
public Collection<BQModuleProvider> dependencies() {
return Collections.singletonList(
new JerseyModuleProvider()
Expand Down

0 comments on commit 2e00c7d

Please sign in to comment.