aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kamon-core/src/main/scala/kamon/instrumentation/RunnableInstrumentation.scala2
-rw-r--r--project/Settings.scala2
2 files changed, 2 insertions, 2 deletions
diff --git a/kamon-core/src/main/scala/kamon/instrumentation/RunnableInstrumentation.scala b/kamon-core/src/main/scala/kamon/instrumentation/RunnableInstrumentation.scala
index 02d74287..992cfa82 100644
--- a/kamon-core/src/main/scala/kamon/instrumentation/RunnableInstrumentation.scala
+++ b/kamon-core/src/main/scala/kamon/instrumentation/RunnableInstrumentation.scala
@@ -39,7 +39,7 @@ class RunnableInstrumentation {
@After("instrumentedRunnableCreation(runnable)")
- def beforeCreation(runnable: TraceContextAwareRunnable) = {
+ def beforeCreation(runnable: TraceContextAwareRunnable): Unit = {
// Force traceContext initialization.
runnable.traceContext
}
diff --git a/project/Settings.scala b/project/Settings.scala
index 9633b405..356273a6 100644
--- a/project/Settings.scala
+++ b/project/Settings.scala
@@ -3,7 +3,7 @@ import Keys._
import spray.revolver.RevolverPlugin.Revolver
object Settings {
- val VERSION = "0.0.3"
+ val VERSION = "0.0.4"
lazy val basicSettings = seq(
version := VERSION,