Hello Christian,

applying to your commit message and in comparison to the second example shouldn't it be

return (result[0] == null? null : result);

Otherwise it seems to make no sense.

Joerg

[EMAIL PROTECTED] wrote:
Make sure to return null instead of { null }

...


Object[] result = new Object[1];
result[0] = getAttribute(name, modeConf, objectModel);
- return result;
+ return (result == null? null : result);
}

Reply via email to