Try to fix issues with encoding.

This commit is contained in:
Paulo Gustavo Veiga
2012-11-28 21:44:17 -03:00
parent 66e4b0fb19
commit ebd6f886d5
2 changed files with 5 additions and 5 deletions

View File

@@ -125,10 +125,7 @@ public class MindMapBean {
}
public String getXmlAsJsLiteral() throws IOException {
final String result = this.mindmap.getXmlAsJsLiteral();
// Firefox is failing for this. Need to be reviewed ...
return result.replace("\\u0000", "");
return this.mindmap.getXmlAsJsLiteral();
}
public String getProperties() throws WiseMappingException {