From b91616bd649a5fba78963a0ec0857dfb27b59f72 Mon Sep 17 00:00:00 2001 From: Peng Lyu Date: Thu, 18 Jan 2018 21:08:01 -0800 Subject: [PATCH] avoid unnecessary code change. --- src/vs/editor/common/model/linesTextBuffer/textSource.ts | 2 +- src/vs/editor/common/viewModel/prefixSumComputer.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/editor/common/model/linesTextBuffer/textSource.ts b/src/vs/editor/common/model/linesTextBuffer/textSource.ts index d2ea4389338..79c06f1c9f1 100644 --- a/src/vs/editor/common/model/linesTextBuffer/textSource.ts +++ b/src/vs/editor/common/model/linesTextBuffer/textSource.ts @@ -35,7 +35,7 @@ export interface IRawTextSource { export class TextSource { - /**f + /** * if text source is empty or with precisely one line, returns null. No end of line is detected. * if text source contains more lines ending with '\r\n', returns '\r\n'. * Otherwise returns '\n'. More lines end with '\n'. diff --git a/src/vs/editor/common/viewModel/prefixSumComputer.ts b/src/vs/editor/common/viewModel/prefixSumComputer.ts index 291ec21fa35..8730795093f 100644 --- a/src/vs/editor/common/viewModel/prefixSumComputer.ts +++ b/src/vs/editor/common/viewModel/prefixSumComputer.ts @@ -23,7 +23,7 @@ export class PrefixSumComputer { /** * values[i] is the value at index i */ - values: Uint32Array; + private values: Uint32Array; /** * prefixSum[i] = SUM(heights[j]), 0 <= j <= i -- GitLab