Minor fix.

This commit is contained in:
Paulo Gustavo Veiga 2012-09-14 11:02:28 -03:00
parent 5719e54091
commit b4f036745f

View File

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