I want to add multiple conditions to a breakpoint in IntelliJ. Something like:
stringA.equals("test") && objectA.equals(objectB);
How can I do this?
So adding a return statment in front of the statment solved the problem.