X-Git-Url: http://gitweb.fperrin.net/?p=GpsPrune.git;a=blobdiff_plain;f=tim%2Fprune%2Fsave%2Fxml%2FXmlUtils.java;fp=tim%2Fprune%2Fsave%2Fxml%2FXmlUtils.java;h=643ebb015c5d8aa6a0e1dd1c3bb754ddb355fd11;hp=3943d078de1c1166e708a15345989df0ef7fc428;hb=6f96fb8a39cd8dadff3602eec8a26ed2a7d1fca8;hpb=6c4d1e66abb6fee79b28b2e0c63487c081a3ff38 diff --git a/tim/prune/save/xml/XmlUtils.java b/tim/prune/save/xml/XmlUtils.java index 3943d07..643ebb0 100644 --- a/tim/prune/save/xml/XmlUtils.java +++ b/tim/prune/save/xml/XmlUtils.java @@ -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;