This commit is contained in:
xmd5a 2015-03-28 21:29:03 +03:00
commit 355640fb00

View file

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