Fix failing tests due to last commit
This commit is contained in:
parent
62c1e44db2
commit
37f9c86758
|
@ -123,7 +123,7 @@ public class ReactiveAdapterRegistry {
|
|||
Object sourceToUse = (source instanceof Optional ? ((Optional<?>) source).orElse(null) : source);
|
||||
Class<?> clazz = (sourceToUse != null ? sourceToUse.getClass() : reactiveType);
|
||||
|
||||
if (reactiveType == null) {
|
||||
if (clazz == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue