You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by "Jaroslav Tulach (JIRA)" <ji...@apache.org> on 2019/08/04 04:27:00 UTC

[jira] [Created] (NETBEANS-2950) Cannot finish app by stopping debugging

Jaroslav Tulach created NETBEANS-2950:
-----------------------------------------

             Summary: Cannot finish app by stopping debugging
                 Key: NETBEANS-2950
                 URL: https://issues.apache.org/jira/browse/NETBEANS-2950
             Project: NetBeans
          Issue Type: Bug
          Components: projects - Gradle
    Affects Versions: 11.0
            Reporter: Jaroslav Tulach
            Assignee: Laszlo Kishalmi


When I create Gradle/Java Application and try to debug it, it doesn't stop when I press the "Finish Debugging" button. That is weird and certainly different to behavior of Maven and Ant projects. Example:
{code:java}
public class Main {

    public static void main(String[] args) throws Exception {
        int cnt = 0;
        while (true) {
            Thread.sleep(1000);
            System.out.println("counting " + ++cnt);
        }
    }
    
}{code}
Debug the project. Then press the big red button in the debugger toolbar. The debugger disconnects, but immediately reconnects again and the application continues. I find this unexpected.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists