Skip to content
This repository has been archived by the owner on Apr 21, 2023. It is now read-only.

Commit

Permalink
[eclipse/xtext-core#1909] solve circular proxy problems
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Dietrich <christian.dietrich@itemis.de>
  • Loading branch information
cdietrich committed Jun 7, 2022
1 parent 53caa7c commit 783956f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public String toValue(String string, INode node) throws ValueConverterException
if(getWildcardLiteral().equals(segment)) {
buffer.append(getWildcardLiteral());
} else {
buffer.append((String) valueConverterService.toValue(segment, getDelegateRuleName(), null));
buffer.append((String) valueConverterService.get().toValue(segment, getDelegateRuleName(), null));
}
}
}
Expand Down

0 comments on commit 783956f

Please sign in to comment.