Skip to content

Commit

Permalink
fix: add classificationNames not classifcations
Browse files Browse the repository at this point in the history
  • Loading branch information
sumandas0 committed Apr 9, 2024
1 parent 67a1895 commit bc9269e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,7 @@ private AtlasEntityHeader mapVertexToAtlasEntityHeader(AtlasVertex entityVertex,
if(includeClassifications){
ret.setClassificationNames(getAllTraitNamesFromAttribute(entityVertex));
} else if (!includeClassifications && includeClassificationNames) {
ret.setClassifications(getAllClassifications(entityVertex));
ret.setClassificationNames(getAllTraitNamesFromAttribute(entityVertex));
}
ret.setIsIncomplete(isIncomplete);
ret.setLabels(getLabels(entityVertex));
Expand Down

0 comments on commit bc9269e

Please sign in to comment.