mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-07 21:38:15 +00:00
Support for Archetype processing in IG publisher
This commit is contained in:
parent
12cfe341fc
commit
e282b9470f
@ -1676,4 +1676,13 @@ public class Element extends Base implements NamedItem {
|
||||
return this.elided;
|
||||
}
|
||||
|
||||
public void stripLocations() {
|
||||
line = -1;
|
||||
col = -1;
|
||||
if (children != null) {
|
||||
for (Element child : children) {
|
||||
child.stripLocations();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -136,6 +136,7 @@ public class UserDataNames {
|
||||
public static final String pub_no_load_deps = "no-load-deps";
|
||||
|
||||
public static final String kindling_ballot_package = "ballot.package";
|
||||
public static final String archetype = "archetype";
|
||||
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user