Skip to content

Commit

Permalink
Fix docs of interceptor service registration
Browse files Browse the repository at this point in the history
  • Loading branch information
geoand committed Sep 19, 2024
1 parent ecefcdc commit 30fdaab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion documentation/src/main/docs/extensions/fallback.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import java.util.function.Function;
import io.smallrye.config.FallbackConfigSourceInterceptor;

public class MicroProfileConfigFallbackInterceptor extends FallbackConfigSourceInterceptor {
public MicroProfileConfigFallbackInterceptor(final Function<String, String> mapping) {
public MicroProfileConfigFallbackInterceptor() {
super(name -> name.startsWith("mp.config") ?
name.replaceAll("mp\\.config", "smallrye.config") :
name);
Expand Down
2 changes: 1 addition & 1 deletion documentation/src/main/docs/extensions/relocate.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import java.util.function.Function;
import io.smallrye.config.RelocateConfigSourceInterceptor;

public class MicroProfileConfigRelocateInterceptor extends RelocateConfigSourceInterceptor {
public MicroProfileConfigRelocateInterceptor(final Function<String, String> mapping) {
public MicroProfileConfigRelocateInterceptor() {
super(name -> name.startsWith("mp.config") ?
name.replaceAll("mp\\.config", "smallrye.config") :
name);
Expand Down

0 comments on commit 30fdaab

Please sign in to comment.