adityamukho commented on code in PR #6299: URL: https://github.com/apache/ignite-3/pull/6299#discussion_r2230404519
########## modules/error-code-annotation-processor/src/main/java/org/apache/ignite/internal/error/code/generators/CsharpGenerator.java: ########## @@ -121,4 +127,15 @@ private void generateErrorCode(String name, int code) throws IOException { line(String.format(" public const int %s = (GroupCode << %d) | (%d & 0xFFFF);", transfromErrorCodeName(name), groupShift, code)); } + + private void generateDeprecatedAlias(String name, String identifier) throws IOException { + String transformedName = transfromErrorCodeName(name); + String transformedIdentifier = transfromErrorCodeName(identifier); + + line(); + line(String.format(" /// <summary> %s is deprecated. Use %s instead. </summary>", transformedName, Review Comment: I'll change it out. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org