Skip to content

Commit 2a7d29f

Browse files
committed
TraceServer: Fix prettier formatting
Fix prettier formatting as prescribed within [1]: [1] https://github.com/eclipse-cdt-cloud/vscode-trace-server#development Signed-off-by: Marco Miller <[email protected]>
1 parent 1bb1405 commit 2a7d29f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/trace-server.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,10 @@ export class TraceServer {
205205

206206
private setStatusIfAvailable(started: boolean) {
207207
const commands = vscode.commands.getCommands();
208-
commands.then((commandArray) => {
208+
commands.then(commandArray => {
209209
const fromTraceExtension = 'serverStatus';
210210
const startCommand = fromTraceExtension + '.started';
211-
if (commandArray.findIndex(val => val === (startCommand)) > 0) {
211+
if (commandArray.findIndex(val => val === startCommand) > 0) {
212212
if (started) {
213213
vscode.commands.executeCommand(startCommand);
214214
} else {

0 commit comments

Comments
 (0)