From 5cdbe12ef7ec1ee2d99c5430924aab23c0fea503 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 2 Jan 2026 15:15:21 +0100 Subject: all: remove unused nolint directives --- vm/proxyapp/proxyappclient.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'vm/proxyapp/proxyappclient.go') diff --git a/vm/proxyapp/proxyappclient.go b/vm/proxyapp/proxyappclient.go index c3740ce6a..ffc5d5b85 100644 --- a/vm/proxyapp/proxyappclient.go +++ b/vm/proxyapp/proxyappclient.go @@ -423,7 +423,6 @@ type instance struct { } // Copy copies a hostSrc file into VM and returns file name in VM. -// nolint: dupl func (inst *instance) Copy(hostSrc string) (string, error) { var reply proxyrpc.CopyResult params := proxyrpc.CopyParams{ @@ -450,7 +449,6 @@ func (inst *instance) Copy(hostSrc string) (string, error) { // Forward sets up forwarding from within VM to the given tcp // port on the host and returns the address to use in VM. -// nolint: dupl func (inst *instance) Forward(port int) (string, error) { var reply proxyrpc.ForwardResult err := inst.ProxyApp.Call( -- cgit mrf-deployment