aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2014-05-20 20:56:29 -0300
committerDiego <diegolparra@gmail.com>2014-05-20 20:56:29 -0300
commitb17539d231da923ea854c01d2c69eb02ef1e85b1 (patch)
treec91377445ccdb14e2fdb16dae1bf3e6b66ca4ffe
parent40073266ed7ed69ae0e42801201dc818b59726fb (diff)
downloadKamon-b17539d231da923ea854c01d2c69eb02ef1e85b1.tar.gz
Kamon-b17539d231da923ea854c01d2c69eb02ef1e85b1.tar.bz2
Kamon-b17539d231da923ea854c01d2c69eb02ef1e85b1.zip
= core: added license in TraceLocal and TraceLocalSpec
-rw-r--r--kamon-core/src/main/scala/kamon/trace/TraceLocal.scala16
-rw-r--r--kamon-core/src/test/scala/kamon/trace/TraceLocalSpec.scala17
2 files changed, 32 insertions, 1 deletions
diff --git a/kamon-core/src/main/scala/kamon/trace/TraceLocal.scala b/kamon-core/src/main/scala/kamon/trace/TraceLocal.scala
index c79fa632..3ff074b6 100644
--- a/kamon-core/src/main/scala/kamon/trace/TraceLocal.scala
+++ b/kamon-core/src/main/scala/kamon/trace/TraceLocal.scala
@@ -1,3 +1,19 @@
+/*
+ * =========================================================================================
+ * Copyright © 2013-2014 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.trace
import scala.collection.concurrent.TrieMap
diff --git a/kamon-core/src/test/scala/kamon/trace/TraceLocalSpec.scala b/kamon-core/src/test/scala/kamon/trace/TraceLocalSpec.scala
index 53ff8a24..927573c2 100644
--- a/kamon-core/src/test/scala/kamon/trace/TraceLocalSpec.scala
+++ b/kamon-core/src/test/scala/kamon/trace/TraceLocalSpec.scala
@@ -1,3 +1,19 @@
+/*
+ * =========================================================================================
+ * Copyright © 2013-2014 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.trace
import akka.testkit.TestKit
@@ -46,5 +62,4 @@ class TraceLocalSpec extends TestKit(ActorSystem("trace-local-spec")) with WordS
}
}
}
-
}