Skip to content

Commit

Permalink
Remove unnecessary parentheses (#25573)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy authored and mjbvz committed May 1, 2017
1 parent b404610 commit 36baf60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/typescript/src/typescriptServiceClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ export default class TypeScriptServiceClient implements ITypescriptServiceClient

if (this.servicePromise === null && (oldglobalTsdk !== this.globalTsdk || oldLocalTsdk !== this.localTsdk)) {
this.startService();
} else if (this.servicePromise !== null && (this.tsServerLogLevel !== oldLoggingLevel || (oldglobalTsdk !== this.globalTsdk || oldLocalTsdk !== this.localTsdk))) {
} else if (this.servicePromise !== null && (this.tsServerLogLevel !== oldLoggingLevel || oldglobalTsdk !== this.globalTsdk || oldLocalTsdk !== this.localTsdk)) {
this.restartTsServer();
}
}));
Expand Down

0 comments on commit 36baf60

Please sign in to comment.