Search code examples
debuggingintellij-ideaconditional-breakpoint

Using multiple Conditions in Intellij Debugger Breakpoint


I want to add multiple conditions to a breakpoint in IntelliJ. Something like:

stringA.equals("test") && objectA.equals(objectB);

How can I do this?


Solution

  • So adding a return statment in front of the statment solved the problem.

    without return

    with return