Skip to content

Commit

Permalink
Fixed xml keys
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Rass committed Apr 4, 2014
1 parent 0ad208d commit bf2dc8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/com/trendrr/oss/DynMap.java
Expand Up @@ -875,7 +875,7 @@ public String toXMLString() {
Iterator iter = this.entrySet().iterator();
while (iter.hasNext()) {
Map.Entry entry = (Map.Entry) iter.next();
String element = String.valueOf(entry.getKey());
String element = String.valueOf(entry.getKey()).replace(" ", "_");
buf.append("<" + element + ">");
if (entry.getValue() instanceof DynMap) {
buf.append(((DynMap) entry.getValue())
Expand Down

0 comments on commit bf2dc8a

Please sign in to comment.