remove unwanted debugging statements

This commit is contained in:
Grahame Grieve 2023-08-04 11:57:18 +10:00
parent c069538d2e
commit 7da1e419e9
1 changed files with 0 additions and 3 deletions

View File

@ -766,10 +766,8 @@ public class ProfilePathProcessor {
int i = ss.size() -1;
ElementDefinition m = null;
System.out.println("check for "+ed.getPath());
while (i >= 0) {
ElementDefinition t = ss.get(i);
System.out.println(""+i+": "+t.getPath());
if (pathsMatch(t.getPath(), ed.getPath())) {
if (t.hasSlicing() || t.hasSliceName() || t.getPath().endsWith("[x]")) {
m = t;
@ -790,7 +788,6 @@ public class ProfilePathProcessor {
} else {
System.err.println("checkToSeeIfSlicingExists: "+ed.getPath()+":"+ed.getSliceName()+" is not sliced");
}
m = ed;
}
}