Skip to content

Commit

Permalink
fix factory generic (#1176)
Browse files Browse the repository at this point in the history
  • Loading branch information
manofthepeace authored Jun 14, 2024
1 parent 6399d0a commit 4fa27d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/src/main/docs/config-sources/factories.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ interface FileSystemConfig {
```

```java
public class FileSystemConfigurableConfigSourceFactory<FileSystemConfig> implements ConfigurableConfigSourceFactory {
public class FileSystemConfigurableConfigSourceFactory implements ConfigurableConfigSourceFactory<FileSystemConfig> {
@Override
public Iterable<ConfigSource> getConfigSources(ConfigSourceContext context, FileSystemConfig config) {

Expand Down

0 comments on commit 4fa27d7

Please sign in to comment.