Skip to content

Commit

Permalink
Update ExtensionLoader.java
Browse files Browse the repository at this point in the history
  • Loading branch information
SentryMan committed Jun 17, 2024
1 parent 22a1947 commit 26bd87d
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,23 +37,23 @@ final class ExtensionLoader {
}
}

public Optional<MessageInterpolator> interpolator() {
Optional<MessageInterpolator> interpolator() {
return interpolator;
}

public List<GeneratedComponent> generatedComponents() {
List<GeneratedComponent> generatedComponents() {
return generatedComponents;
}

public List<ValidatorCustomizer> customizers() {
List<ValidatorCustomizer> customizers() {
return customizers;
}

public List<AdapterFactory> adapterFactories() {
List<AdapterFactory> adapterFactories() {
return adapterFactories;
}

public List<AnnotationFactory> annotationFactories() {
List<AnnotationFactory> annotationFactories() {
return annotationFactories;
}
}

0 comments on commit 26bd87d

Please sign in to comment.