Review usage of BindingReflectionHintsRegistrar#registerReflectionHints

Closes gh-32753
This commit is contained in:
Stéphane Nicoll
2024-05-02 16:53:59 +02:00
parent 47c5cd208c
commit abcc1dfc6c
3 changed files with 15 additions and 6 deletions

View File

@@ -62,7 +62,7 @@ public class BindingReflectionHintsRegistrar {
* @param hints the hints instance to use
* @param types the types to register
*/
public void registerReflectionHints(ReflectionHints hints, @Nullable Type... types) {
public void registerReflectionHints(ReflectionHints hints, Type... types) {
Set<Type> seen = new LinkedHashSet<>();
for (Type type : types) {
registerReflectionHints(hints, seen, type);