Skip to content

Commit

Permalink
Merge branch 'develop' into update/scala-library-2.12.20
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n authored Oct 6, 2024
2 parents cce9fef + 2e514a5 commit 51ab4fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.1
sbt.version=1.10.2
4 changes: 2 additions & 2 deletions src/main/scala/sbtunidoc/Unidoc.scala
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ object Unidoc {
private[this] def exported(s: TaskStreams, command: String): Seq[String] => Unit = args =>
exported(s.text("export"), command)
private[this] def foldMappers[A](mappers: Seq[A => Option[A]]) =
mappers.foldRight({ p: A =>
mappers.foldRight({ (p: A) =>
p
}) { (mapper, mappers) =>
{ p: A =>
{ (p: A) =>
mapper(p).getOrElse(mappers(p))
}
}
Expand Down

0 comments on commit 51ab4fb

Please sign in to comment.