@@ -28,8 +28,8 @@ import (
2828 "github.com/pkg/errors"
2929)
3030
31- // BuildOptions fixdoc
32- type BuildOptions struct {
31+ // buildOptions fixdoc
32+ type buildOptions struct {
3333 currentOptions * properties.Map
3434
3535 hardwareDirs paths.PathList
@@ -45,8 +45,8 @@ type BuildOptions struct {
4545 clean bool
4646}
4747
48- // NewBuildOptionsManager fixdoc
49- func NewBuildOptionsManager (
48+ // newBuildOptions fixdoc
49+ func newBuildOptions (
5050 hardwareDirs , builtInToolsDirs , otherLibrariesDirs paths.PathList ,
5151 builtInLibrariesDirs , buildPath * paths.Path ,
5252 sketch * sketch.Sketch ,
@@ -55,7 +55,7 @@ func NewBuildOptionsManager(
5555 clean bool ,
5656 compilerOptimizationFlags string ,
5757 runtimePlatformPath , buildCorePath * paths.Path ,
58- ) * BuildOptions {
58+ ) * buildOptions {
5959 opts := properties .NewMap ()
6060
6161 opts .Set ("hardwareFolders" , strings .Join (hardwareDirs .AsStrings (), "," ))
@@ -81,7 +81,7 @@ func NewBuildOptionsManager(
8181 }
8282 opts .Set ("additionalFiles" , strings .Join (additionalFilesRelative , "," ))
8383
84- return & BuildOptions {
84+ return & buildOptions {
8585 currentOptions : opts ,
8686 hardwareDirs : hardwareDirs ,
8787 builtInToolsDirs : builtInToolsDirs ,
0 commit comments