Auto style fix

This commit is contained in:
Eugene Yokota 2015-02-02 14:56:13 -05:00
parent 71978ffffd
commit 69171f40b3
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ private final class Settings0[Scope](val data: Map[Scope, AttributeMap], val del
def set[T](scope: Scope, key: AttributeKey[T], value: T): Settings[Scope] =
{
val map = data getOrElse(scope, AttributeMap.empty)
val map = data getOrElse (scope, AttributeMap.empty)
val newData = data.updated(scope, map.put(key, value))
new Settings0(newData, delegates)
}