From 772aa2c10fb040fa402537d8bf7e525673d5970c Mon Sep 17 00:00:00 2001 From: campersau Date: Tue, 6 Jun 2017 13:32:10 +0200 Subject: [PATCH] cleanup duplicate semicolons in minimapCharRenderer itroduced in https://github.com/Microsoft/vscode/commit/8f9dc8e220aef53c19ef9dfa7284689e04080a0d#diff-0e25f213bdb14a7f0c59d148e40f02f5R256 and https://github.com/Microsoft/vscode/commit/8faa03f88573dbf4b0f5a5a6b583436319d836a8#diff-0e25f213bdb14a7f0c59d148e40f02f5R256 --- src/vs/editor/common/view/minimapCharRenderer.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/editor/common/view/minimapCharRenderer.ts b/src/vs/editor/common/view/minimapCharRenderer.ts index ac1d59a029f..cdf67f31294 100644 --- a/src/vs/editor/common/view/minimapCharRenderer.ts +++ b/src/vs/editor/common/view/minimapCharRenderer.ts @@ -253,7 +253,7 @@ export class MinimapCharRenderer { const deltaG = color.g - backgroundG; const deltaB = color.b - backgroundB; - const colorR = backgroundR + deltaR * c;; + const colorR = backgroundR + deltaR * c; const colorG = backgroundG + deltaG * c; const colorB = backgroundB + deltaB * c; @@ -325,7 +325,7 @@ export class MinimapCharRenderer { const deltaG = color.g - backgroundG; const deltaB = color.b - backgroundB; - const colorR = backgroundR + deltaR * c;; + const colorR = backgroundR + deltaR * c; const colorG = backgroundG + deltaG * c; const colorB = backgroundB + deltaB * c; -- GitLab