[weaver-pojo*] Refactor POJO weaver extensibility

This commit is contained in:
2025-06-21 15:27:15 +02:00
parent 95b2cbc7dd
commit dc318722d3
26 changed files with 414 additions and 203 deletions

View File

@@ -38,7 +38,7 @@ public class ClassToInstanceMap<T extends @NonNull Object> implements Iterable<T
return delegate.containsValue(value);
}
public <V extends T> V get(Class<V> key) {
public <V extends T> @Nullable V get(Class<V> key) {
return (V) delegate.get(key);
}