Fix "Propery" typos.

This commit is contained in:
Jeremy Lacomis 2019-12-19 13:00:59 -05:00
parent 43f766e954
commit e14d061e33
4 changed files with 9 additions and 9 deletions

View file

@ -604,7 +604,7 @@ class ProgramUserDataDB extends DomainObjectAdapterDB implements ProgramUserData
}
@Override
public synchronized StringPropertyMap getStringPropery(String owner, String propertyName,
public synchronized StringPropertyMap getStringProperty(String owner, String propertyName,
boolean create) throws PropertyTypeMismatchException {
return (StringPropertyMap) getPropertyMap(owner, propertyName, PROPERTY_TYPE_STRING, null,
create);

View file

@ -45,7 +45,7 @@ public interface ProgramUserData extends UserData {
* @return property map
* @throws PropertyTypeMismatchException if a conflicting map definition was found
*/
public StringPropertyMap getStringPropery(String owner, String propertyName, boolean create)
public StringPropertyMap getStringProperty(String owner, String propertyName, boolean create)
throws PropertyTypeMismatchException;
/**