summaryrefslogtreecommitdiff
path: root/src/main/scala/cc/spray/json/CollectionFormats.scala
diff options
context:
space:
mode:
authorMathias <mathias@spray.cc>2012-10-12 14:13:43 +0200
committerMathias <mathias@spray.cc>2012-10-12 14:13:43 +0200
commit5354b7b2b1af66049328eed150e036a314878559 (patch)
treed14346f16c6a962267e99e9335b01f73a461896f /src/main/scala/cc/spray/json/CollectionFormats.scala
parent573b9d6e0b637e6ffe9c5a036bf552542d79eae8 (diff)
downloadspray-json-5354b7b2b1af66049328eed150e036a314878559.tar.gz
spray-json-5354b7b2b1af66049328eed150e036a314878559.tar.bz2
spray-json-5354b7b2b1af66049328eed150e036a314878559.zip
Rename domain name from spray.cc to spray.io, rename package from 'cc.spray.json' to 'spray.json'
Diffstat (limited to 'src/main/scala/cc/spray/json/CollectionFormats.scala')
-rw-r--r--src/main/scala/cc/spray/json/CollectionFormats.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/scala/cc/spray/json/CollectionFormats.scala b/src/main/scala/cc/spray/json/CollectionFormats.scala
index 93e41ab..3b0d0c2 100644
--- a/src/main/scala/cc/spray/json/CollectionFormats.scala
+++ b/src/main/scala/cc/spray/json/CollectionFormats.scala
@@ -15,7 +15,7 @@
* limitations under the License.
*/
-package cc.spray.json
+package spray.json
trait CollectionFormats {
@@ -43,7 +43,7 @@ trait CollectionFormats {
/**
* Supplies the JsonFormat for Maps. The implicitly available JsonFormat for the key type K must
- * always write JsStrings, otherwise a [[cc.spray.json.SerializationException]] will be thrown.
+ * always write JsStrings, otherwise a [[spray.json.SerializationException]] will be thrown.
*/
implicit def mapFormat[K :JsonFormat, V :JsonFormat] = new RootJsonFormat[Map[K, V]] {
def write(m: Map[K, V]) = JsObject {