File tree Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -34,10 +34,6 @@ export class BazelProject {
3434 }
3535
3636 public openProject ( modules : bazelmodule . BazelModule [ ] ) {
37- // this.makeTargetFolder();
38- // this.buildBazelProject(modules, this.targetFolder);
39- // this.buildSymlinks(modules);
40- // this.openFolder(this.targetFolder);
4137 this . buildBazelProject ( modules , this . _sourceFolder ) ;
4238 this . buildCodeWorkspace ( modules , this . _sourceFolder ) ;
4339 this . openFolder ( path . join ( this . _sourceFolder , this . codeWorkspaceFile ) ) ;
Original file line number Diff line number Diff line change @@ -49,7 +49,6 @@ export function activate(context: vscode.ExtensionContext) {
4949 } ) ;
5050
5151 context . subscriptions . push ( viewTitleDisp ) ;
52-
5352}
5453
5554// this method is called when your extension is deactivated
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ export class VsCodeWorkspace {
88 this . folders . push ( { path : folder } ) ;
99 this . settings = { } ;
1010 this . settings [ 'files.exclude' ] = this . buildExcludes ( modules ) ;
11+ this . settings [ 'java.configuration.updateBuildConfiguration' ] = 'automatic' ;
1112 }
1213
1314 private buildExcludes ( modules : bazelmodule . BazelModule [ ] ) : { } {
You can’t perform that action at this time.
0 commit comments