use of org.openstreetmap.osmosis.hstore.PGHStore in project osmosis by openstreetmap.
the class CopyFilesetBuilder method buildTags.
private PGHStore buildTags(Entity entity) {
PGHStore tags;
tags = new PGHStore();
for (Tag tag : entity.getTags()) {
tags.put(tag.getKey(), tag.getValue());
}
return tags;
}