mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-03-03 01:49:10 +00:00
Tweak spacing.
This commit is contained in:
parent
69ce2b45f2
commit
5dc19cd052
@ -496,6 +496,7 @@ public class Turtle {
|
||||
if (p.asList) writer.write("( ");
|
||||
} else {
|
||||
if (!p.asList) writer.write(", ");
|
||||
else writer.write(" ");
|
||||
}
|
||||
if (o instanceof StringType)
|
||||
writer.write(((StringType) o).value);
|
||||
@ -546,6 +547,7 @@ public class Turtle {
|
||||
if (p.asList) b.append("( ");
|
||||
} else
|
||||
if (!p.asList) b.append(", ");
|
||||
else b.append(" ");
|
||||
if (o instanceof StringType)
|
||||
b.append(Utilities.escapeXml(((StringType) o).value));
|
||||
else {
|
||||
@ -601,6 +603,7 @@ public class Turtle {
|
||||
if (po.asList) writer.write("( ");
|
||||
} else {
|
||||
if (!po.asList) writer.write(", ");
|
||||
else writer.write(" ");
|
||||
}
|
||||
if (o instanceof StringType)
|
||||
writer.write(((StringType) o).value);
|
||||
@ -641,6 +644,7 @@ public class Turtle {
|
||||
b.append(po.makelink()+" ");
|
||||
} else
|
||||
if (!po.asList) b.append(", ");
|
||||
else b.append(" ");
|
||||
if (o instanceof StringType)
|
||||
b.append(Utilities.escapeXml(((StringType) o).value));
|
||||
else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user