mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-03-03 01:49:10 +00:00
PR comment
This commit is contained in:
parent
973ab9e56f
commit
51ad87c715
@ -298,7 +298,7 @@ public class LanguageUtils {
|
||||
}
|
||||
|
||||
// Create a copy of the children collection before iterating
|
||||
List<Element> childrenCopy = new ArrayList<>(element.getChildren());
|
||||
List<Element> childrenCopy = List.copyOf(element.getChildren());
|
||||
for (Element c : childrenCopy) {
|
||||
if (!c.getName().equals("designation")) {
|
||||
t = t + importFromTranslations(element, c, translations, usedUnits);
|
||||
|
Loading…
x
Reference in New Issue
Block a user