Unverified Commit 24edec61 authored by per1234's avatar per1234 Committed by GitHub

[skip changelog] Replace obsolete BoardDetailsResp.GetRequiredTools() call in...

[skip changelog] Replace obsolete BoardDetailsResp.GetRequiredTools() call in gRPC client example (#685)

The new equivalent method is GetToolsDependencies().
parent 4021535c
...@@ -445,7 +445,7 @@ func callBoardsDetails(client rpc.ArduinoCoreClient, instance *rpc.Instance) { ...@@ -445,7 +445,7 @@ func callBoardsDetails(client rpc.ArduinoCoreClient, instance *rpc.Instance) {
} }
log.Printf("Board details for %s", details.GetName()) 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()) log.Printf("Config options: %s", details.GetConfigOptions())
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment