Reputation: 55
Working with Android Studio, I debug my app using breakpoints. There seem to be two kinds of breakpoints:
Could someone explain the difference between those two breakpoints?
Upvotes: 4
Views: 2091
Reputation: 887
According to the official JetBrains Help, the Breakpoint without the small tick means that the breakpoint is enabled and the other with the small tick means that the breakpoint is valid.
For more information, see https://www.jetbrains.com/idea/help/breakpoints-icons-and-statuses.html
Upvotes: 1