From 88ece83727319e0cb419316989a924518df30a36 Mon Sep 17 00:00:00 2001 From: Till Faelligen Date: Mon, 16 Aug 2021 18:00:04 +0200 Subject: [PATCH] Revert "Disable lint typecheck" This reverts commit 3c76f219d3cb43e4ee9a9c319abd0b8879972cfc. --- cmd/dendrite-demo-yggdrasil/yggconn/node.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/dendrite-demo-yggdrasil/yggconn/node.go b/cmd/dendrite-demo-yggdrasil/yggconn/node.go index 8e3083ea4..002e8071f 100644 --- a/cmd/dendrite-demo-yggdrasil/yggconn/node.go +++ b/cmd/dendrite-demo-yggdrasil/yggconn/node.go @@ -26,7 +26,7 @@ import ( "os" "strings" - "github.com/lucas-clemente/quic-go" //nolint: typecheck + "github.com/lucas-clemente/quic-go" "github.com/matrix-org/gomatrixserverlib" "github.com/neilalexander/utp" @@ -44,7 +44,7 @@ type Node struct { config *yggdrasilconfig.NodeConfig multicast *yggdrasilmulticast.Multicast log *gologme.Logger - listener quic.Listener //nolint: typecheck + listener quic.Listener utpSocket *utp.Socket incoming chan net.Conn }