Make TestClassScanner package private again

TestClassScanner was made public with the assumption that Spring Boot's
AOT testing support might need to work directly with that class; however,
it turns out that Spring Boot does not currently have such a need.

In light of that, this commit restores TestClassScanner's visibility to
package private.
This commit is contained in:
Sam Brannen 2022-10-05 18:50:30 +02:00
parent 98801f8a5b
commit 26e485ce40
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ import static org.springframework.core.annotation.MergedAnnotations.SearchStrate
* @author Sam Brannen
* @since 6.0
*/
public class TestClassScanner {
class TestClassScanner {
// JUnit Jupiter
private static final String EXTEND_WITH_ANNOTATION_NAME = "org.junit.jupiter.api.extension.ExtendWith";