From 56b37fb87fc8165bb3bf9c8232e39cc54981bbb4 Mon Sep 17 00:00:00 2001 From: "Joshua A. Horton" Date: Fri, 15 Jul 2022 08:53:08 +0700 Subject: [PATCH] chore(web): remove invalid warning msg --- .../input-processor/src/text/prediction/languageProcessor.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/common/web/input-processor/src/text/prediction/languageProcessor.ts b/common/web/input-processor/src/text/prediction/languageProcessor.ts index 47a6335004..12511cfb9f 100644 --- a/common/web/input-processor/src/text/prediction/languageProcessor.ts +++ b/common/web/input-processor/src/text/prediction/languageProcessor.ts @@ -157,9 +157,6 @@ namespace com.keyman.text.prediction { } else if(outputTarget) { let transcription = outputTarget.buildTranscriptionFrom(outputTarget, null, false); this.predict_internal(transcription, true, layerId); - } else { - // Shouldn't be possible, and we'll want to know if and when it is. - console.warn("OutputTarget missing during an invalidateContext call"); } }