@@ -43,14 +43,14 @@ default void generateSyntaxFrom(Class<?> owner) {
4343 if (section == null ) break entry_section ;
4444 final GeneratedEntrySection box = new GeneratedEntrySection (this , (Class <Record >) owner , section .value ());
4545 this .registerSyntax (CompileState .MEMBER_BODY , box );
46- for (RecordComponent component : owner .getRecordComponents ()) {
46+ for (final RecordComponent component : owner .getRecordComponents ()) {
4747 final EntryNode node = component .getAnnotation (EntryNode .class );
4848 if (node == null ) continue ;
4949 final GeneratedEntryNode thing = new GeneratedEntryNode (this , component , node .value ());
5050 this .registerSyntax (CompileState .AREA_BODY , thing );
5151 }
5252 }
53- for (Method method : owner .getDeclaredMethods ()) {
53+ for (final Method method : owner .getDeclaredMethods ()) {
5454 effect :
5555 {
5656 final Effect effect = method .getAnnotation (Effect .class );
@@ -83,7 +83,7 @@ default void generateSyntaxFrom(Class<?> owner) {
8383 void registerProperty (String name , HandlerType type , Method handler );
8484
8585 default void registerValues (EventHolder event ) {
86- for (Method method : event .eventClass ().getMethods ()) {
86+ for (final Method method : event .eventClass ().getMethods ()) {
8787 final EventValue value = method .getAnnotation (EventValue .class );
8888 if (value == null ) continue ;
8989 if (method .getParameterTypes ().length == 0 && method .getReturnType () != void .class ) {
0 commit comments