@@ -232,26 +232,11 @@ func (b *Builder) GetBuildPath() *paths.Path {
232
232
return b .buildPath
233
233
}
234
234
235
- // GetSketchBuildPath returns the sketch build path
236
- func (b * Builder ) GetSketchBuildPath () * paths.Path {
237
- return b .sketchBuildPath
238
- }
239
-
240
- // GetLibrariesBuildPath returns the libraries build path
241
- func (b * Builder ) GetLibrariesBuildPath () * paths.Path {
242
- return b .librariesBuildPath
243
- }
244
-
245
235
// ExecutableSectionsSize fixdoc
246
236
func (b * Builder ) ExecutableSectionsSize () ExecutablesFileSections {
247
237
return b .executableSectionsSize
248
238
}
249
239
250
- // TargetPlatform fixdoc
251
- func (b * Builder ) TargetPlatform () * cores.PlatformRelease {
252
- return b .targetPlatform
253
- }
254
-
255
240
// Preprocess fixdoc
256
241
func (b * Builder ) Preprocess () error {
257
242
b .Progress .AddSubSteps (6 )
@@ -284,14 +269,14 @@ func (b *Builder) preprocess() error {
284
269
285
270
b .logIfVerbose (false , tr ("Detecting libraries used..." ))
286
271
err := b .SketchLibrariesDetector .FindIncludes (
287
- b .GetBuildPath () ,
288
- b .GetBuildProperties () .GetPath ("build.core.path" ),
289
- b .GetBuildProperties () .GetPath ("build.variant.path" ),
290
- b .GetSketchBuildPath () ,
291
- b .Sketch () ,
292
- b .GetLibrariesBuildPath () ,
293
- b .GetBuildProperties () ,
294
- b .TargetPlatform () .Platform .Architecture ,
272
+ b .buildPath ,
273
+ b .buildProperties .GetPath ("build.core.path" ),
274
+ b .buildProperties .GetPath ("build.variant.path" ),
275
+ b .sketchBuildPath ,
276
+ b .sketch ,
277
+ b .librariesBuildPath ,
278
+ b .buildProperties ,
279
+ b .targetPlatform .Platform .Architecture ,
295
280
)
296
281
if err != nil {
297
282
return err
0 commit comments