checkstyle

This commit is contained in:
Ben Bosman
2019-08-06 18:42:25 +02:00
parent 664dc0077c
commit afc9e5bd89

View File

@@ -91,13 +91,15 @@ public class RelationshipMetadataServiceImpl implements RelationshipMetadataServ
otherItem = relationship.getRightItem();
relationName = relationship.getRelationshipType().getLeftLabel();
place = relationship.getLeftPlace();
isLeftwards = false; //if the current item is stored on the left, the name variant is retrieved from the rightwards label
isLeftwards = false; //if the current item is stored on the left,
// the name variant is retrieved from the rightwards label
} else if (StringUtils.equals(relationshipType.getRightType().getLabel(), entityType)) {
hashMaps = virtualMetadataPopulator.getMap().get(relationshipType.getRightLabel());
otherItem = relationship.getLeftItem();
relationName = relationship.getRelationshipType().getRightLabel();
place = relationship.getRightPlace();
isLeftwards = true; //if the current item is stored on the right, the name variant is retrieved from the leftwards label
isLeftwards = true; //if the current item is stored on the right,
// the name variant is retrieved from the leftwards label
} else {
//No virtual metadata can be created
return resultingMetadataValueList;