We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 820016f commit 373b92eCopy full SHA for 373b92e
.github/workflows/release.yml
@@ -1,7 +1,7 @@
1
name: Release
2
on:
3
push:
4
- tags: ["*"]
+# tags: ["*"]
5
jobs:
6
publish:
7
runs-on: ubuntu-latest
build.sbt
@@ -175,6 +175,13 @@ lazy val scalaJava8Compat = (project in file("."))
175
organization.value.replace('.', '/') /
176
base / v
177
Process(s"unzip -o $name", wd).!.ensuring(_ == 0)
178
+
179
+ val src = (Compile / managedSourceDirectories).value.head / "FunctionConverters.scala"
180
+ println()
181
+ println(src)
182
+ println(IO.read(src))
183
+ println("------\n")
184
185
val javap = Process(s"javap -c -v scala.compat.java8.Priority1FunctionConverters", wd).!!
186
println("\n++++javap++++")
187
println(javap)
0 commit comments