You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The recently added attribute value for entity does not work as expected. The
method isValid in class EntityNode does not respect if the value attribute has
been set. It should be something like:
public boolean isValid() {
if (null != text && text.length() > 0) {
return true;
} else if (null != file) {
return true;
} else if (null != value) {
return true;
}
return false;
}
Sorry not reporting this until now. I just assumed that this worked but a few
minutes ago a colleague spotted a 500 error in a log... :)
Original issue reported on code.google.com by [email protected] on 14 Sep 2011 at 11:52
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 14 Sep 2011 at 11:52The text was updated successfully, but these errors were encountered: