Skip to content
This repository has been archived by the owner on May 22, 2019. It is now read-only.

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Hull committed Dec 22, 2010
1 parent ae2e606 commit 22404e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class NameserverState(initialShards: List[gizzard.shards.ShardInfo],
val key = link.upId
val entry = map.getOrElse(key, List[gizzard.shards.LinkInfo]())

map + ((key, entry + link))
map + ((key, entry ::: List(link)))
}

val forwardings = initialForwardings.filter(_.tableId == tableId)
Expand Down

0 comments on commit 22404e2

Please sign in to comment.