Skip to content

Commit

Permalink
add equals condition
Browse files Browse the repository at this point in the history
  • Loading branch information
aarshi0301 committed Dec 17, 2024
1 parent 90bd052 commit de84941
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1964,7 +1964,7 @@ public Object getVertexAttributePreFetchCache(AtlasVertex vertex, AtlasAttribute
}

// value is present as marker , fetch the value from the vertex
if (properties.get(attribute.getName()) == StringUtils.SPACE) {
if (properties.get(attribute.getName()).equals(StringUtils.SPACE)) {
return mapVertexToAttribute(vertex, attribute, null, false);
}

Expand Down

0 comments on commit de84941

Please sign in to comment.