Skip to content

Commit d8f5a92

Browse files
committed
Fix CDI Integration Tests failures based on JDK 17 upgrade.
Change access modifier on inner Person entity class and PersonRepository interface to public in the GemfireRepositoryBeanTest class. Resolves spring-projectsgh-538.
1 parent 28c6de7 commit d8f5a92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-data-geode/src/test/java/org/springframework/data/gemfire/repository/cdi/GemfireRepositoryBeanTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -339,8 +339,8 @@ public Set<Entry<Long, Object>> entrySet() {
339339
}
340340
}
341341

342-
static class Person {}
342+
public static class Person {}
343343

344-
interface PersonRepository extends GemfireRepository<Person, Long> { }
344+
public interface PersonRepository extends GemfireRepository<Person, Long> { }
345345

346346
}

0 commit comments

Comments
 (0)