Skip to content

Commit

Permalink
Remove constructor arguments from examples (#1224)
Browse files Browse the repository at this point in the history
* Remove constructor arguments

* Remove constructor args from the example

* Remove import

* Remove import
  • Loading branch information
gastaldi authored Sep 19, 2024
1 parent ecefcdc commit 5fa4c5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions documentation/src/main/docs/extensions/fallback.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ configuration name is not found and resolved to the fallback name.
```java
package org.acme.config;

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
3 changes: 1 addition & 2 deletions documentation/src/main/docs/extensions/relocate.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ resolves to the old name if no value is found under the new relocation name.
```java
package org.acme.config;

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 5fa4c5d

Please sign in to comment.