From dc58f07719b70f4838420150b6f27359bba5580c Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 1 Jul 2021 00:17:34 -0700 Subject: [PATCH] [skip changelog] Remove obsolete go generate directive In the early days of Arduino CLI's gRPC interface, the protocol buffer compilation was done via `go generate`, configured by a directive comment. The `protoc:compile` task is now used instead, but the old directive was left in place, where it became outdated through changes to the repository structure. This directive no longer functions or serves a purpose and might cause confusion to contributors. So it should be removed. --- commands/daemon/daemon.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/commands/daemon/daemon.go b/commands/daemon/daemon.go index 835f3ad7db7..52e9ab0e0fd 100644 --- a/commands/daemon/daemon.go +++ b/commands/daemon/daemon.go @@ -15,8 +15,6 @@ package daemon -//go:generate protoc -I arduino --go_out=plugins=grpc:arduino arduino/arduino.proto - import ( "context" "io"