Skip to content

Commit

Permalink
remove invalid relTypes from single-valued relation code
Browse files Browse the repository at this point in the history
  • Loading branch information
andyjefferson committed Jan 12, 2018
1 parent 27a0285 commit 19b8904
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -955,8 +955,7 @@ else if (RelationType.isRelationMultiValued(relationType))
{
// Not embedded
embMmds.clear();
if (relationType == RelationType.ONE_TO_MANY_UNI || relationType == RelationType.ONE_TO_MANY_BI ||
relationType == RelationType.MANY_TO_ONE_UNI || relationType == RelationType.MANY_TO_ONE_BI)
if (relationType == RelationType.MANY_TO_ONE_UNI || relationType == RelationType.MANY_TO_ONE_BI)
{
if (!iter.hasNext())
{
Expand Down

0 comments on commit 19b8904

Please sign in to comment.