remove console.log (fyi @aeschli)

This commit is contained in:
Benjamin Pasero
2017-04-28 14:27:35 +02:00
parent 0ff4498392
commit 52dd6053f4

View File

@@ -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;
}