Tiny code cleanup.
This commit is contained in:
parent
0edebd55d7
commit
5ce84d4d9a
1 changed files with 3 additions and 3 deletions
|
@ -316,8 +316,8 @@ public class ACIPConverter {
|
||||||
hasErrors = true;
|
hasErrors = true;
|
||||||
tdoc.appendRoman(err, Color.RED);
|
tdoc.appendRoman(err, Color.RED);
|
||||||
} else {
|
} else {
|
||||||
tdoc.appendDuffCodes(new DuffCode[] { TibetanMachineWeb.getGlyph(wylie) },
|
tdoc.appendDuffCode(TibetanMachineWeb.getGlyph(wylie),
|
||||||
Color.BLACK);
|
Color.BLACK);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -511,7 +511,7 @@ public class ACIPConverter {
|
||||||
&& lpl.get(0).getLeft().equals("NG")) {
|
&& lpl.get(0).getLeft().equals("NG")) {
|
||||||
DuffCode tshegDuff = TibetanMachineWeb.getGlyph(" ");
|
DuffCode tshegDuff = TibetanMachineWeb.getGlyph(" ");
|
||||||
if (null == tshegDuff) throw new Error("tsheg duff");
|
if (null == tshegDuff) throw new Error("tsheg duff");
|
||||||
tdoc.appendDuffCodes(new DuffCode[] { tshegDuff }, lastColor);
|
tdoc.appendDuffCode(tshegDuff, lastColor);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!done) {
|
if (!done) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue