Skip to content

Commit

Permalink
Removed unused parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
awelc committed Oct 11, 2024
1 parent 97a5a90 commit 04fcc67
Showing 1 changed file with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -379,11 +379,7 @@ export class MoveDebugSession extends LoggingDebugSession {
): void {
let terminate = false;
try {
terminate = this.runtime.step(
/* next */ true,
/* stopAtCloseFrame */ false,
/* nextLineSkip */ true
);
terminate = this.runtime.step(/* next */ true, /* stopAtCloseFrame */ false);
} catch (err) {
response.success = false;
response.message = err instanceof Error ? err.message : String(err);
Expand All @@ -400,11 +396,7 @@ export class MoveDebugSession extends LoggingDebugSession {
): void {
let terminate = false;
try {
terminate = this.runtime.step(
/* next */ false,
/* stopAtCloseFrame */ false,
/* nextLineSkip */ true
);
terminate = this.runtime.step(/* next */ false, /* stopAtCloseFrame */ false);
} catch (err) {
response.success = false;
response.message = err instanceof Error ? err.message : String(err);
Expand Down

0 comments on commit 04fcc67

Please sign in to comment.