From 8f2ae9d6c99e0a9dec89cd82f72b0c5ed35e22f2 Mon Sep 17 00:00:00 2001 From: Jianhui Zhao Date: Wed, 2 Jul 2025 17:23:45 +0800 Subject: [PATCH] remove unused variable `devCertPool` in `broker` struct Signed-off-by: Jianhui Zhao --- broker.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/broker.go b/broker.go index 81b9190..2d4e5aa 100644 --- a/broker.go +++ b/broker.go @@ -1,7 +1,6 @@ package main import ( - "crypto/x509" "encoding/binary" "fmt" "io" @@ -41,7 +40,6 @@ type broker struct { httpResp chan *httpResp httpReq chan *httpReq fileProxy sync.Map - devCertPool *x509.CertPool } func newBroker(cfg *config.Config) *broker {