Skip to content

Commit 65733a5

Browse files
autofix-ci[bot]lefou
authored andcommitted
[autofix.ci] apply automated fixes
1 parent d69ce4c commit 65733a5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

core/api/src/mill/api/MappedRoots.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ trait MappedRootsImpl {
8787
for {
8888
singleKey <- key
8989
} {
90-
if (!map.contains(singleKey)) throw new NoSuchElementException(s"No root path mapping defined for '${key}'")
90+
if (!map.contains(singleKey))
91+
throw new NoSuchElementException(s"No root path mapping defined for '${key}'")
9192
}
9293
}
9394

runner/daemon/src/mill/daemon/MillBuildBootstrap.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,8 @@ class MillBuildBootstrap(
274274
selectiveExecution = selectiveExecution,
275275
offline = offline,
276276
workerCache = newWorkerCache,
277-
codeSignatures = nestedState.frames.headOption.map(_.codeSignatures).getOrElse(Map.empty),
277+
codeSignatures =
278+
nestedState.frames.headOption.map(_.codeSignatures).getOrElse(Map.empty),
278279
rootModule = buildFileApi.rootModule,
279280
// We want to use the grandparent buildHash, rather than the parent
280281
// buildHash, because the parent build changes are instead detected

0 commit comments

Comments
 (0)