Skip to content

Commit

Permalink
remove temp notes
Browse files Browse the repository at this point in the history
  • Loading branch information
sandersn committed Apr 17, 2020
1 parent e212f1e commit fc8bc8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/session.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1307,8 +1307,8 @@ namespace ts.server {
private getProjects(args: protocol.FileRequestArgs, getScriptInfoEnsuringProjectsUptoDate?: boolean, ignoreNoProjectError?: boolean): Projects {
let projects: readonly Project[] | undefined;
let symLinkedProjects: MultiMap<Project> | undefined;
if (args.projectFileName) { // manually specified tsconfig, not sure anybody does this (but be sure to note it in the fix)
const project = this.getProject(args.projectFileName); // and we only get here when currentFileOnly is off
if (args.projectFileName) {
const project = this.getProject(args.projectFileName);
if (project) {
projects = [project];
}
Expand Down

0 comments on commit fc8bc8b

Please sign in to comment.