Codebase list libkmlframework-java / 2ed38b7
Corrected bug in Placemark class. Was "</>" instead of "</Placemark>" eivind@boehn.org 15 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
4141 }
4242
4343 public void writeDelete(Kml kml) throws KmlException {
44 kml.println("<Placemark" + getIdAndTargetIdFormatted(kml) + "></>");
44 kml.println("<Placemark" + getIdAndTargetIdFormatted(kml) + "></Placemark>");
4545 }
4646 }