Fix build after changes in data-commons.

Closes: #3803
This commit is contained in:
Christoph Strobl
2025-03-06 08:22:29 +01:00
parent b6c3d67d74
commit 4376c41244

View File

@@ -73,6 +73,7 @@ import org.springframework.data.jpa.repository.sample.SampleEvaluationContextExt
import org.springframework.data.jpa.repository.sample.UserRepository;
import org.springframework.data.jpa.repository.sample.UserRepository.NameOnly;
import org.springframework.data.jpa.util.DisabledOnHibernate;
import org.springframework.lang.Nullable;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit.jupiter.SpringExtension;
import org.springframework.transaction.annotation.Transactional;
@@ -3579,6 +3580,7 @@ class UserRepositoryTests {
private interface UserProjectionInterfaceBased {
String getFirstname();
@Nullable
String getLastname();
}