From e34d46e0c78e03d36d4613f65f6475fae4f58b82 Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 6 May 2020 04:42:48 -0700 Subject: [PATCH] [skip changelog] Replace obsolete BoardDetailsResp.GetRequiredTools() call in gRPC client example The new equivalent method is GetToolsDependencies(). --- client_example/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_example/main.go b/client_example/main.go index 9d9ecda6bad..35665f90a39 100644 --- a/client_example/main.go +++ b/client_example/main.go @@ -445,7 +445,7 @@ func callBoardsDetails(client rpc.ArduinoCoreClient, instance *rpc.Instance) { } log.Printf("Board details for %s", details.GetName()) - log.Printf("Required tools: %s", details.GetRequiredTools()) + log.Printf("Required tools: %s", details.GetToolsDependencies()) log.Printf("Config options: %s", details.GetConfigOptions()) }