Skip to content

Commit 0cc60bb

Browse files
committed
Removed unused parameter
1 parent 49ebf22 commit 0cc60bb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

internal/arduino/builder/internal/detector/detector.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ func (l *SketchLibrariesDetector) findIncludes(
272272
}
273273

274274
for !sourceFileQueue.empty() {
275-
err := l.findIncludesUntilDone(ctx, cache, sourceFileQueue, buildProperties, sketchBuildPath, librariesBuildPath, platformArch)
275+
err := l.findIncludesUntilDone(ctx, cache, sourceFileQueue, buildProperties, librariesBuildPath, platformArch)
276276
if err != nil {
277277
cachePath.Remove()
278278
return err
@@ -304,7 +304,6 @@ func (l *SketchLibrariesDetector) findIncludesUntilDone(
304304
cache *includeCache,
305305
sourceFileQueue *uniqueSourceFileQueue,
306306
buildProperties *properties.Map,
307-
sketchBuildPath *paths.Path,
308307
librariesBuildPath *paths.Path,
309308
platformArch string,
310309
) error {

0 commit comments

Comments
 (0)