mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-24 21:12:05 +01:00
Merge pull request #567 from guusdk/sint_trim-config
[sinttest] Trim externally-provided configuration
This commit is contained in:
commit
9203907e66
1 changed files with 1 additions and 1 deletions
|
@ -488,7 +488,7 @@ public final class Configuration {
|
||||||
}
|
}
|
||||||
key = key.substring(SINTTEST.length());
|
key = key.substring(SINTTEST.length());
|
||||||
String value = (String) entry.getValue();
|
String value = (String) entry.getValue();
|
||||||
properties.put(key, value);
|
properties.put(key.trim(), value.trim());
|
||||||
}
|
}
|
||||||
|
|
||||||
Builder builder = builder();
|
Builder builder = builder();
|
||||||
|
|
Loading…
Reference in a new issue