aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/metric/EntityRecorder.scala
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2016-03-15 23:51:20 +0100
committerIvan Topolnjak <ivantopo@gmail.com>2016-03-15 23:51:20 +0100
commit71e777ebec4f244f5233788fd8af2e062cf14f24 (patch)
treedb317e4bd0c49d06881f95925e1056c1938fa3f6 /kamon-core/src/main/scala/kamon/metric/EntityRecorder.scala
parent60880bb1b6ec15f40ecacf5ab46c849a86ce4b60 (diff)
downloadKamon-71e777ebec4f244f5233788fd8af2e062cf14f24.tar.gz
Kamon-71e777ebec4f244f5233788fd8af2e062cf14f24.tar.bz2
Kamon-71e777ebec4f244f5233788fd8af2e062cf14f24.zip
minor formatting changes.
Diffstat (limited to 'kamon-core/src/main/scala/kamon/metric/EntityRecorder.scala')
-rw-r--r--kamon-core/src/main/scala/kamon/metric/EntityRecorder.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/kamon-core/src/main/scala/kamon/metric/EntityRecorder.scala b/kamon-core/src/main/scala/kamon/metric/EntityRecorder.scala
index c1392d4d..810475b7 100644
--- a/kamon-core/src/main/scala/kamon/metric/EntityRecorder.scala
+++ b/kamon-core/src/main/scala/kamon/metric/EntityRecorder.scala
@@ -34,7 +34,7 @@ trait EntityRecorderFactory[T <: EntityRecorder] {
def createRecorder(instrumentFactory: InstrumentFactory): T
}
-abstract class EntityRecorderFactoryCompanion[T <: EntityRecorder](val category: String, builder: (InstrumentFactory) => T)
+abstract class EntityRecorderFactoryCompanion[T <: EntityRecorder](val category: String, builder: (InstrumentFactory) ⇒ T)
extends EntityRecorderFactory[T] {
def createRecorder(instrumentFactory: InstrumentFactory): T = builder(instrumentFactory)