bug fixes
This commit is contained in:
parent
8a546d37eb
commit
5eca02f879
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue