Fix typo in setMarkerSetLabel() API

This commit is contained in:
Mike Primm 2011-09-08 11:59:56 -05:00
parent d6b5524aca
commit e54c1fa7d8
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)