Skip to content

Commit

Permalink
fix: add override annotation.
Browse files Browse the repository at this point in the history
  • Loading branch information
credmond-git committed Aug 6, 2024
1 parent 4a37318 commit 7e0b5e1
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 @@ -25,6 +25,7 @@ public class ClassPathConfigNodeFactory implements ConfigNodeFactory {

private ConfigLoaderService configLoaderService;

@Override
public void applyConfig(ConfigNodeFactoryConfig config) {
this.configLoaderService = config.getConfigLoaderService();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public class ConfigNodeImportFactory implements ConfigNodeFactory {
private ConfigNodeService configNodeService;
private SentenceLexer lexer;

@Override
public void applyConfig(ConfigNodeFactoryConfig config) {
this.configNodeService = config.getConfigNodeService();
this.lexer = config.getLexer();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public class FileConfigNodeFactory implements ConfigNodeFactory {

private ConfigLoaderService configLoaderService;

@Override
public void applyConfig(ConfigNodeFactoryConfig config) {
this.configLoaderService = config.getConfigLoaderService();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public MapNodeImportFactory(String source, Map<String, String> configMap) {
this.configMap = configMap;
}

@Override
public void applyConfig(ConfigNodeFactoryConfig config) {
this.configLoaderService = config.getConfigLoaderService();
}
Expand Down

0 comments on commit 7e0b5e1

Please sign in to comment.