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")) {
|
if (metaElements.hasAttribute("name") && metaElements.hasAttribute("content")) {
|
||||||
String metaName = metaElements.getAttribute("name");
|
String metaName = metaElements.getAttribute("name");
|
||||||
String metaValue = metaElements.getAttribute("content");
|
String metaValue = metaElements.getAttribute("content");
|
||||||
if (metadata.containsKey(metaName)) {
|
if (!metadata.containsKey(metaName)) {
|
||||||
metadata.get(metaName).add(metaValue);
|
|
||||||
} else {
|
|
||||||
Set<String> names = new HashSet<String>();
|
Set<String> names = new HashSet<String>();
|
||||||
names.add(metaValue);
|
|
||||||
metadata.put(metaName, names);
|
metadata.put(metaName, names);
|
||||||
}
|
}
|
||||||
|
Set<String> names = metadata.get(metaName);
|
||||||
|
names.add(metaValue);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue