]> gitweb.fperrin.net Git - GpsPrune.git/blobdiff - tim/prune/save/xml/XmlUtils.java
Version 18.3, February 2016
[GpsPrune.git] / tim / prune / save / xml / XmlUtils.java
index 3943d078de1c1166e708a15345989df0ef7fc428..643ebb015c5d8aa6a0e1dd1c3bb754ddb355fd11 100644 (file)
@@ -37,7 +37,7 @@ public abstract class XmlUtils
                // Remove all instances of end block
                result = result.replaceAll(CDATA_END, "");
                // Now check whether cdata block is required
-               if (!XmlUtils.hasIllegalCharacter(result)) {
+               if (!hasIllegalCharacter(result)) {
                        return result;
                }
                return CDATA_START + result + CDATA_END;