Refactoring
This commit is contained in:
parent
bb042ff42d
commit
7137414a54
1 changed files with 3 additions and 4 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue