-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump packaged oshi, newrelic, zipkin, nanojson, guava and slf4j-api dependencies; also bump scala 2.12 and scala 2.13 dependencies (was hitting a compilation error with 2.12.12 and it seemed prudent...) * bump opentelemetry dependency * revert slf4j bump. Make scala 2.13 default scalaVersion (fixes project load in intellIJ) * Ah. Scalafmt only applies to files included under the default scala version unless otherwise specified * apply scalafmt to a few more files and ensure lint is against all language versions
- Loading branch information
1 parent
7b55e3f
commit 7e31bad
Showing
12 changed files
with
72 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
instrumentation/kamon-executors/src/main/scala-2.11/kamon/instrumentation/package.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package kamon.instrumentation | ||
package object executor { | ||
type ScalaForkJoinPool = scala.concurrent.forkjoin.ForkJoinPool | ||
type ScalaForkJoinPool = scala.concurrent.forkjoin.ForkJoinPool | ||
} |
2 changes: 1 addition & 1 deletion
2
instrumentation/kamon-executors/src/main/scala-2.13/kamon/instrumentation/package.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package kamon.instrumentation | ||
package object executor { | ||
type ScalaForkJoinPool = java.util.concurrent.ForkJoinPool | ||
type ScalaForkJoinPool = java.util.concurrent.ForkJoinPool | ||
} |
2 changes: 1 addition & 1 deletion
2
instrumentation/kamon-executors/src/main/scala-3/kamon/instrumentation/package.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package kamon.instrumentation | ||
package object executor { | ||
type ScalaForkJoinPool = java.util.concurrent.ForkJoinPool | ||
type ScalaForkJoinPool = java.util.concurrent.ForkJoinPool | ||
} |
2 changes: 1 addition & 1 deletion
2
...umentation/kamon-instrumentation-common/src/main/scala-2.11/scala/annotation/static.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package scala.annotation | ||
|
||
import scala.annotation.meta._ | ||
final class static extends StaticAnnotation | ||
final class static extends StaticAnnotation |
2 changes: 1 addition & 1 deletion
2
...umentation/kamon-instrumentation-common/src/main/scala-2.13/scala/annotation/static.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package scala.annotation | ||
|
||
import scala.annotation.meta._ | ||
final class static extends StaticAnnotation | ||
final class static extends StaticAnnotation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters