Create Quarkus project -> open src/main/java/org/acme/ExampleResource.java -> add
System.out.println("Print 1");
before return -> put breakpoint to this line -> debug quarkus project (Right click -> Debug as -> Quarkus Application -> Debug) -> open "localhost:8080/hello" in browser -> starting debug application -> fast click on f6 (step over) and f8 (resume) -> application works fine, but green highlight still on "return" line -> reload page in browser -> click f6 -> wait 1 second -> click f8 -> no highlight.
Create Quarkus project -> open src/main/java/org/acme/ExampleResource.java -> add
System .out.println( "Print 1" );
before return -> put breakpoint to this line -> debug quarkus project (Right click -> Debug as -> Quarkus Application -> Debug) -> open "localhost:8080/hello" in browser -> starting debug application -> fast click on f6 (step over) and f8 (resume) -> application works fine, but green highlight still on "return" line -> reload page in browser -> click f6 -> wait 1 second -> click f8 -> no highlight.
---
Fast click on "step over" and "resume" cause an highlighting error. I'm not sure its on JBT side, can discuss in comments.