From 420a23257dfb4a0eff25d0029f9bb5058b143619 Mon Sep 17 00:00:00 2001 From: crisbeto Date: Fri, 1 Dec 2017 20:54:21 +0100 Subject: [PATCH] chore(checkbox): remove leftover console.log Gets rid of a `console.log` that was left over from 537b8b552a9442869ed0fbddb5939a1dfafb3f6b. --- src/lib/checkbox/checkbox.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/checkbox/checkbox.ts b/src/lib/checkbox/checkbox.ts index 7131c307da47..b439f4abc270 100644 --- a/src/lib/checkbox/checkbox.ts +++ b/src/lib/checkbox/checkbox.ts @@ -381,7 +381,6 @@ export class MatCheckbox extends _MatCheckboxMixinBase implements ControlValueAc if (this.indeterminate && this._clickAction !== 'check') { Promise.resolve().then(() => { - console.log(`reset indeterminate`); this._indeterminate = false; this.indeterminateChange.emit(this._indeterminate); });