Skip to content

Commit

Permalink
read configuration settings when activated
Browse files Browse the repository at this point in the history
  • Loading branch information
Huachao committed Apr 6, 2016
1 parent 004d885 commit cb7fa0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export function activate(context: ExtensionContext) {

let outChannel = window.createOutputChannel('REST');
let statusBarItem = window.createStatusBarItem(StatusBarAlignment.Left)
let restClientSettings = new RestClientSettings();

// The command has been defined in the package.json file
// Now provide the implementation of the command with registerCommand
Expand All @@ -40,7 +41,6 @@ export function activate(context: ExtensionContext) {
return;
}

let restClientSettings = new RestClientSettings();
if (restClientSettings.clearOutput) {
outChannel.clear();
}
Expand Down

0 comments on commit cb7fa0e

Please sign in to comment.