|
@@ -271,7 +271,7 @@ public class RelationContactFacade extends RelationServiceImpl {
|
|
|
List<Long> hookConceptIds_ = new ArrayList<>();
|
|
|
hookConceptIds_.addAll(hookConceptIds);
|
|
|
hookConceptIds_.add(i.getConceptId());
|
|
|
- i.setNodeList(repairRelationDataForQuery(i.getConceptId(),relationIds,typeIds,hookConceptIds_,i.getIsDeletedConcept()));
|
|
|
+ i.setNodeList(repairRelationDataForQuery(i.getConceptId(),Lists.newArrayList(relationIds),Lists.newArrayList(typeIds),hookConceptIds_,i.getIsDeletedConcept()));
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -382,7 +382,7 @@ public class RelationContactFacade extends RelationServiceImpl {
|
|
|
}
|
|
|
|
|
|
removeRelationIds.forEach(i->{
|
|
|
- repairRelationDataForDelete(i, relationIds, typeIds);
|
|
|
+ repairRelationDataForDelete(i, Lists.newArrayList(relationIds), Lists.newArrayList(typeIds));
|
|
|
});
|
|
|
}
|
|
|
|