Re: [PR] Substituted string concatenation as argument of StringBuilder.append() [camel]

2024-01-18 Thread via GitHub
davsclaus merged PR #12647: URL: https://github.com/apache/camel/pull/12647 -- 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: commits-unsubscr...@camel.ap

Re: [PR] Substituted string concatenation as argument of StringBuilder.append() [camel]

2024-01-18 Thread via GitHub
dk2k commented on PR #12647: URL: https://github.com/apache/camel/pull/12647#issuecomment-1898988189 I updated the PR -- 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 uns

Re: [PR] Substituted string concatenation as argument of StringBuilder.append() [camel]

2024-01-18 Thread via GitHub
davsclaus commented on PR #12647: URL: https://github.com/apache/camel/pull/12647#issuecomment-1898640221 Can you update the PR -- 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 commen

[PR] Substituted string concatenation as argument of StringBuilder.append() [camel]

2024-01-04 Thread via GitHub
dk2k opened a new pull request, #12647: URL: https://github.com/apache/camel/pull/12647 … with chained append() calls - every concatenation is transformed by compiler to temp StringBuilder itself (additional garbage). Implemented templated var in instanceof check. This issues are hi