Skip to content

Commit

Permalink
update sbt and reformat files
Browse files Browse the repository at this point in the history
  • Loading branch information
jtjeferreira committed Apr 12, 2019
1 parent fa371d7 commit 256c15a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=0.13.17
sbt.version=1.2.8
3 changes: 1 addition & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
lazy val root: Project = project.in(file(".")).dependsOn(latestSbtUmbrella)
lazy val latestSbtUmbrella = uri("git://github.com/kamon-io/kamon-sbt-umbrella.git")
lazy val root: Project = project in file(".") dependsOn(RootProject(uri("git://github.com/kamon-io/kamon-sbt-umbrella.git")))
3 changes: 2 additions & 1 deletion src/main/scala/kamon/jaeger/JaegerReporter.scala
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ class JaegerClient(host: String,
ByteBuffer.wrap(identifier.bytes).getLong
}.getOrElse(0L)

private def convertDoubleSizeIdentifier(identifier: Identifier): (Long, Long) =
private def convertDoubleSizeIdentifier(
identifier: Identifier): (Long, Long) =
Try {
val buffer = ByteBuffer.wrap(identifier.bytes)
(buffer.getLong, buffer.getLong)
Expand Down

0 comments on commit 256c15a

Please sign in to comment.