Merge pull request #319 from ejc123/0.11

Remove trailing whitespace from entries in credentials file
This commit is contained in:
Mark Harrah 2012-01-01 12:55:32 -08:00
commit 053f2a4ea0
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ object Credentials
{
val properties = new java.util.Properties
IO.load(properties, from)
properties map { case (k,v) => (k.toString, v.toString) } toMap;
properties map { case (k,v) => (k.toString, v.toString.trim) } toMap;
}
}