Skip to content

Commit

Permalink
Address review suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
prakanth97 committed Apr 9, 2024
1 parent edd8cc4 commit 869b361
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ private boolean isParseFunctionFromXmldata(ExpressionNode expressionNode) {
if (nameReferenceNode.kind() != SyntaxKind.QUALIFIED_NAME_REFERENCE) {
return false;
}
String prefix = ((QualifiedNameReferenceNode) nameReferenceNode).modulePrefix().toString();
String prefix = ((QualifiedNameReferenceNode) nameReferenceNode).modulePrefix().text();
if (!prefix.equals(Constants.XMLDATA)) {
return false;
}
Expand Down

0 comments on commit 869b361

Please sign in to comment.