bug fixes

This commit is contained in:
Grahame Grieve 2023-03-06 23:33:38 +11:00
parent 8a546d37eb
commit 5eca02f879
2 changed files with 2 additions and 2 deletions

View File

@ -177,7 +177,7 @@ public class SpecDifferenceEvaluator {
String[] names = ini.getPropertyNames("r5-changes");
if (names != null) {
for (String n : names) {
String v = ini.getStringProperty("r5-renames", n);
String v = ini.getStringProperty("r5-changes", n);
if (!Utilities.noString(v)) {
if (v.startsWith("@")) {
// note reverse of order

View File

@ -762,7 +762,7 @@ public class XhtmlNode extends XhtmlFluent implements IBaseXhtml {
@Override
protected void addChildren(XhtmlNodeList childNodes) {
this.childNodes.addAll(childNodes);
this.getChildNodes().addAll(childNodes);
}