Skip to content

Commit 4fa94ce

Browse files
committed
Fix deprecations
1 parent 3f5e265 commit 4fa94ce

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scalalib/src/mill/javalib/android/AndroidLibModule.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ trait AndroidLibModule extends AndroidModule with PublishModule {
2626
pomPackagingType match {
2727
case PackagingType.Pom => Task.Anon(Seq())
2828
case _ => Task.Anon(Seq(
29-
(androidAar(), PublishInfo.aar _),
30-
(sourceJar(), PublishInfo.sourcesJar _),
31-
(docJar(), PublishInfo.docJar _)
29+
(androidAar(), PublishInfo.aar),
30+
(sourceJar(), PublishInfo.sourcesJar),
31+
(docJar(), PublishInfo.docJar)
3232
))
3333
}
3434
}

0 commit comments

Comments
 (0)