* Use Property.getStringValue() to resolve property references in query filters,

otherwise Node references will be rendered as NodeHandle[...].
This commit is contained in:
hns 2005-10-18 13:37:48 +00:00
parent 2a0524aa6b
commit 1ccd0fb75c

View file

@ -857,7 +857,7 @@ public final class Relation {
if (propertyName != null) {
IProperty property = nonvirtual.get(propertyName);
if (property != null) {
value = property.getValue();
value = property.getStringValue();
}
}
if (value == null) {