aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/context/Context.scala
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2017-08-15 13:16:45 -0300
committerDiego <diegolparra@gmail.com>2017-08-15 13:16:45 -0300
commit61029e115272b9af3f4460b311d3a2e650c806e3 (patch)
tree2a6f02a7153ae11720e8f42d7c4292c6d39136e1 /kamon-core/src/main/scala/kamon/context/Context.scala
parent497224c0e499abd611c00c54a57ba04df9bb6d1b (diff)
downloadKamon-61029e115272b9af3f4460b311d3a2e650c806e3.tar.gz
Kamon-61029e115272b9af3f4460b311d3a2e650c806e3.tar.bz2
Kamon-61029e115272b9af3f4460b311d3a2e650c806e3.zip
expose SpanCodec through Kamon::contextCodec
Diffstat (limited to 'kamon-core/src/main/scala/kamon/context/Context.scala')
-rw-r--r--kamon-core/src/main/scala/kamon/context/Context.scala17
1 files changed, 16 insertions, 1 deletions
diff --git a/kamon-core/src/main/scala/kamon/context/Context.scala b/kamon-core/src/main/scala/kamon/context/Context.scala
index f8a4662f..85c80d50 100644
--- a/kamon-core/src/main/scala/kamon/context/Context.scala
+++ b/kamon-core/src/main/scala/kamon/context/Context.scala
@@ -1,8 +1,23 @@
+/* =========================================================================================
+ * Copyright © 2013-2017 the kamon project <http://kamon.io/>
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the
+ * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+ * either express or implied. See the License for the specific language governing permissions
+ * and limitations under the License.
+ * =========================================================================================
+ */
+
package kamon.context
class Context private (private[context] val entries: Map[Key[_], Any]) {
def get[T](key: Key[T]): T =
- entries.get(key).getOrElse(key.emptyValue).asInstanceOf[T]
+ entries.getOrElse(key, key.emptyValue).asInstanceOf[T]
def withKey[T](key: Key[T], value: T): Context =
new Context(entries.updated(key, value))