Skip to content

Commit ce659ae

Browse files
committed
More codestyle fixes
Signed-off-by: Thomas Mäder <[email protected]>
1 parent 3c74cc4 commit ce659ae

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/adapter/handler/InitializeRequestHandler.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -79,16 +79,16 @@ public CompletableFuture<Messages.Response> handle(Requests.Command command, Req
7979
Types.BreakpointModeApplicability.SOURCE
8080
// data and function breakpoints are not supported by VS Code
8181
// instruction breakpoints are not supported by this adapter
82-
}
83-
),
84-
new Types.BreakpointMode(
85-
Constants.SUSPEND_VM,
86-
"Suspend VM",
87-
"Suspends the entire virtual machine when breakpoint is hit",
88-
new Types.BreakpointModeApplicability[] {
89-
Types.BreakpointModeApplicability.SOURCE
90-
}
91-
)
82+
}
83+
),
84+
new Types.BreakpointMode(
85+
Constants.SUSPEND_VM,
86+
"Suspend VM",
87+
"Suspends the entire virtual machine when breakpoint is hit",
88+
new Types.BreakpointModeApplicability[] {
89+
Types.BreakpointModeApplicability.SOURCE
90+
}
91+
)
9292
};
9393
caps.breakpointModes = breakpointModes;
9494

0 commit comments

Comments
 (0)