mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-09 06:14:45 +00:00
clean up code
This commit is contained in:
parent
159e189520
commit
f392abd708
@ -87,9 +87,6 @@ public class TypeDetails {
|
||||
|
||||
public ProfiledType(String n) {
|
||||
uri = ns(n);
|
||||
if (uri.equals("http://hl7.org/fhir/StructureDefinition/CDA")) {
|
||||
System.out.println("!"); // #FIXME
|
||||
}
|
||||
}
|
||||
|
||||
public String getUri() {
|
||||
|
@ -16,9 +16,6 @@ import org.hl7.fhir.utilities.xml.XMLUtil;
|
||||
public class CanonicalResourceUtilities {
|
||||
|
||||
public static void setHl7WG(CanonicalResource cr, String wgc) {
|
||||
if ("http://hl7.org/fhir/days-of-week".equals(cr.getUrl())) {
|
||||
System.out.println("!");
|
||||
}
|
||||
var wg = HL7WorkGroups.find(wgc);
|
||||
if (wg == null) {
|
||||
throw new Error("Unknown WG "+wgc);
|
||||
@ -39,10 +36,6 @@ public class CanonicalResourceUtilities {
|
||||
}
|
||||
|
||||
public static void setHl7WG(CanonicalResource cr) {
|
||||
if ("http://hl7.org/fhir/days-of-week".equals(cr.getUrl())) {
|
||||
System.out.println("!");
|
||||
}
|
||||
|
||||
String wgc = ToolingExtensions.readStringExtension(cr, ToolingExtensions.EXT_WORKGROUP);
|
||||
if (wgc == null) {
|
||||
wgc = "fhir";
|
||||
|
@ -246,7 +246,6 @@ import org.w3c.dom.Document;
|
||||
|
||||
public class InstanceValidator extends BaseValidator implements IResourceValidator {
|
||||
|
||||
|
||||
private static final String EXECUTED_CONSTRAINT_LIST = "validator.executed.invariant.list";
|
||||
private static final String EXECUTION_ID = "validator.execution.id";
|
||||
private static final String HTML_FRAGMENT_REGEX = "[a-zA-Z]\\w*(((\\s+)(\\S)*)*)";
|
||||
|
Loading…
x
Reference in New Issue
Block a user