Skip to content

Commit 211eedd

Browse files
committed
Mark stopImmediately as internal
1 parent 0a71c69 commit 211eedd

File tree

1 file changed

+3
-0
lines changed
  • Core/Common/src/main/java/gay/object/hexdebug/core/api/debugging

1 file changed

+3
-0
lines changed

Core/Common/src/main/java/gay/object/hexdebug/core/api/debugging/StopReason.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package gay.object.hexdebug.core.api.debugging;
22

3+
import org.jetbrains.annotations.ApiStatus;
4+
35
public enum StopReason {
46
STEP(false),
57
PAUSE(true),
@@ -8,6 +10,7 @@ public enum StopReason {
810
STARTED(true),
911
TERMINATED(true);
1012

13+
@ApiStatus.Internal
1114
public final boolean stopImmediately;
1215

1316
StopReason(boolean stopImmediately) {

0 commit comments

Comments
 (0)