From 52dd6053f46a709e29b2d1aa1a00038325c8bdf2 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Fri, 28 Apr 2017 14:27:35 +0200 Subject: [PATCH] remove console.log (fyi @aeschli) --- extensions/json/client/src/colorDecorators.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/extensions/json/client/src/colorDecorators.ts b/extensions/json/client/src/colorDecorators.ts index 6fecd50facb..f1caaea3ee1 100644 --- a/extensions/json/client/src/colorDecorators.ts +++ b/extensions/json/client/src/colorDecorators.ts @@ -134,7 +134,6 @@ export function activateColorDecorations(decoratorProvider: (uri: string) => The const colorPattern = /^#[0-9A-Fa-f]{3,8}$/; function hex2CSSColor(hex: string): string { - console.log(hex); if (!hex || !colorPattern.test(hex)) { return null; }