Skip to content

Commit f947f6a

Browse files
committed
Merge pull request microsoft#6602 from paulvanbrenk/master
Fix up todo comment
2 parents 239695f + 700af6a commit f947f6a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/services/services.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -7179,8 +7179,7 @@ namespace ts {
71797179

71807180
const indentationStr = sourceFile.text.substr(lineStart, posLineAndChar.character);
71817181

7182-
// TODO: call a helper method instead once PR #4133 gets merged in.
7183-
const newLine = host.getNewLine ? host.getNewLine() : "\r\n";
7182+
const newLine = getNewLineOrDefaultFromHost(host);
71847183

71857184
let docParams = "";
71867185
for (let i = 0, numParams = parameters.length; i < numParams; i++) {

0 commit comments

Comments
 (0)