mirror of https://github.com/sbt/sbt.git
Trim configuration names from mappings
cats (as of 213aab0) does that :-|
This commit is contained in:
parent
f9a2ca5329
commit
41ba3c6c75
|
|
@ -26,7 +26,7 @@ object FromSbt {
|
|||
for {
|
||||
from <- froms.split(',')
|
||||
to <- tos.split(',')
|
||||
} yield (from, to)
|
||||
} yield (from.trim, to.trim)
|
||||
}
|
||||
|
||||
def attributes(attr: Map[String, String]): Map[String, String] =
|
||||
|
|
|
|||
Loading…
Reference in New Issue