Merge branch 'maint-rel-1.6' into develop
This commit is contained in:
commit
00b4260dfa
1 changed files with 3 additions and 1 deletions
|
@ -447,8 +447,10 @@ public class DataPropertyStatementDaoJena extends JenaBaseDao implements DataPro
|
||||||
while (results.hasNext()) {
|
while (results.hasNext()) {
|
||||||
QuerySolution sol = results.next();
|
QuerySolution sol = results.next();
|
||||||
Literal value = sol.getLiteral("value");
|
Literal value = sol.getLiteral("value");
|
||||||
|
if(value != null) {
|
||||||
values.add(value);
|
values.add(value);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
log.debug("values = " + values);
|
log.debug("values = " + values);
|
||||||
return values;
|
return values;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue