diff --git a/study/src/test/java/reflection/ReflectionsTest.java b/study/src/test/java/reflection/ReflectionsTest.java index 5040c2ffa2..ce8b20416d 100644 --- a/study/src/test/java/reflection/ReflectionsTest.java +++ b/study/src/test/java/reflection/ReflectionsTest.java @@ -13,6 +13,6 @@ class ReflectionsTest { void showAnnotationClass() throws Exception { Reflections reflections = new Reflections("reflection.examples"); - // TODO 클래스 레벨에 @Controller, @Service, @Repository 애노테이션이 설정되어 모든 클래스 찾아 로그로 출력한다. + // TODO 클래스 레벨에 @Controller, @Service, @Repository 애노테이션이 설정된 모든 클래스를 찾아 로그로 출력한다. } }