Skip to content

Commit 083c6c2

Browse files
committed
Nit: Add named arguments to a buildOnce call
1 parent 7a6e8aa commit 083c6c2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

modules/build/src/main/scala/scala/build/bsp/BspImpl.scala

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -224,14 +224,14 @@ final class BspImpl(
224224
): Either[(BuildException, Scope), Unit] = {
225225
def doBuildOnce(data: PreBuildData, scope: Scope): Either[(BuildException, Scope), Build] =
226226
Build.buildOnce(
227-
currentBloopSession.inputs,
228-
data.sources,
229-
data.generatedSources,
230-
data.buildOptions,
231-
scope,
232-
reloadableOptions.logger,
233-
actualLocalClient,
234-
currentBloopSession.remoteServer,
227+
inputs = currentBloopSession.inputs,
228+
sources = data.sources,
229+
generatedSources = data.generatedSources,
230+
options = data.buildOptions,
231+
scope = scope,
232+
logger = reloadableOptions.logger,
233+
buildClient = actualLocalClient,
234+
compiler = currentBloopSession.remoteServer,
235235
partialOpt = None
236236
).left.map(_ -> scope)
237237

0 commit comments

Comments
 (0)