Skip to content

Commit

Permalink
scalafmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Sep 27, 2023
1 parent d6268dc commit 3e6175f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main/api/src/mill/api/MillException.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ package mill.api
class MillException(msg: String) extends Exception(msg)

class BuildScriptException(msg: String)
extends MillException("Build script contains errors:\n" + msg)
extends MillException("Build script contains errors:\n" + msg)
3 changes: 1 addition & 2 deletions scalalib/src/mill/scalalib/JavaModule.scala
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ trait JavaModule
*/
def moduleDeps: Seq[JavaModule] = Seq.empty

/** Same as [[moduleDeps]] but checked to not contain cycles. */
/** Same as [[moduleDeps]] but checked to not contain cycles. */
final def moduleDepsChecked: Seq[JavaModule] = {
// trigger initialization to check for cycles
recModuleDeps
Expand Down Expand Up @@ -162,7 +162,6 @@ trait JavaModule
_.compileModuleDeps
)


/** The direct and indirect dependencies of this module */
def recursiveModuleDeps: Seq[JavaModule] = {
// moduleDeps.flatMap(_.transitiveModuleDeps).distinct
Expand Down

0 comments on commit 3e6175f

Please sign in to comment.