Fix typo in setMarkerSetLabel() API

This commit is contained in:
Mike Primm 2011-09-09 00:59:56 +08:00 committed by mikeprimm
parent 996343c5a3
commit 4c50bd502c
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ public interface MarkerSet {
* Update label for marker set
* @param lbl - label for marker set
*/
public void setMarketSetLabel(String lbl);
public void setMarkerSetLabel(String lbl);
/**
* Test if marker set is persistent
* @return true if the set is persistent

View File

@ -112,7 +112,7 @@ class MarkerSetImpl implements MarkerSet {
}
@Override
public void setMarketSetLabel(String lbl) {
public void setMarkerSetLabel(String lbl) {
label = lbl;
MarkerAPIImpl.markerSetUpdated(this, MarkerUpdate.UPDATED);
if(ispersistent)