Allow subclasses of ReturnedType.

Closes #3286
This commit is contained in:
Mark Paluch
2025-05-05 17:01:22 +02:00
parent e17dd32b7f
commit bfc380fbea

View File

@@ -56,7 +56,7 @@ public abstract class ReturnedType {
private final Class<?> domainType;
private ReturnedType(Class<?> domainType) {
protected ReturnedType(Class<?> domainType) {
this.domainType = domainType;
}