Skip to content

Commit

Permalink
Fix handling of EntityValues
Browse files Browse the repository at this point in the history
  • Loading branch information
mkroetzsch committed May 1, 2014
1 parent f19c648 commit 741ec26
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ public String setPropertyTypeFromValue(PropertyIdValue propertyIdValue,
* @return
*/
String fetchPropertyType(PropertyIdValue propertyIdValue) {
// TODO implement
return null;
}

Expand All @@ -97,8 +98,8 @@ public String visit(DatatypeIdValue value) {

@Override
public String visit(EntityIdValue value) {
// TODO Auto-generated method stub
return null;
// Only Items can be used as entity values so far
return DatatypeIdValue.DT_ITEM;
}

@Override
Expand Down

0 comments on commit 741ec26

Please sign in to comment.