Refactoring

This commit is contained in:
Georgy Litvinov 2020-05-21 13:58:04 +02:00
parent bb042ff42d
commit 7137414a54

View file

@ -65,13 +65,12 @@ public class DocumentPart {
if (metaElements.hasAttribute("name") && metaElements.hasAttribute("content")) {
String metaName = metaElements.getAttribute("name");
String metaValue = metaElements.getAttribute("content");
if (metadata.containsKey(metaName)) {
metadata.get(metaName).add(metaValue);
} else {
if (!metadata.containsKey(metaName)) {
Set<String> names = new HashSet<String>();
names.add(metaValue);
metadata.put(metaName, names);
}
Set<String> names = metadata.get(metaName);
names.add(metaValue);
}
}
}