From d0970daacda0b6f6c2077c2f81948536b574bbe9 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 12 Jun 2020 09:19:29 -0400 Subject: make std deno-lint clean (#6240) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bartek IwaƄczuk --- std/textproto/mod.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'std/textproto/mod.ts') diff --git a/std/textproto/mod.ts b/std/textproto/mod.ts index 48bbed8bf..e5645a9ed 100644 --- a/std/textproto/mod.ts +++ b/std/textproto/mod.ts @@ -114,7 +114,9 @@ export class TextProtoReader { // example: "Audio Mode" => invalid due to space in the key try { m.append(key, value); - } catch {} + } catch { + // Pass + } } } -- cgit v1.2.3