Skip to content

Commit

Permalink
fix(processor): Remove debug sysout (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeStegii authored Jul 27, 2024
1 parent 35debb4 commit 4f659eb
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,6 @@ private void generateRegisterKeyEventHandler(PrintWriter out, TypeElement compon
// instance.foo();
// });
for (OnKey onKey : method.getAnnotationsByType(OnKey.class)) {
System.out.println("annotation onkey");
out.printf(" controllerManager.addKeyEventHandler(instance, OnKey.Target.%s, OnKey.Type.%s.asEventType(), event -> {%n", onKey.target(), onKey.type());
if (onKey.control()) {
out.printf(" if (!event.isControlDown()) return;%n");
Expand Down

0 comments on commit 4f659eb

Please sign in to comment.