Fix relationship error during import.

This commit is contained in:
Paulo Gustavo Veiga
2011-05-04 00:18:10 -03:00
parent 7fc6b7465d
commit 76c9b2c0f9
4 changed files with 632 additions and 13 deletions

View File

@@ -183,7 +183,7 @@ public class MindMap {
String xml = getNativeXml();
if (xml != null) {
xml = xml.replace("'", "\\'");
xml = xml.replace("\n", "");
xml = xml.replaceAll("\\r|\\n", "");
xml = xml.trim();
}
return xml;