Fix entity

This commit is contained in:
Victor Shcherb 2015-03-28 19:10:56 +01:00
parent b4563ce6b8
commit 7914cc4c03

View file

@ -139,7 +139,7 @@ public abstract class Entity {
if(tags == null){
tags = new LinkedHashMap<String, String>();
}
return tags.put(key, value);
return tags.put(key.toLowerCase(), value);
}
public void replaceTags(Map<String, String> toPut){