Incomplete debug message in ConfigurationClassBeanDefinitionReader#36410
Incomplete debug message in ConfigurationClassBeanDefinitionReader#36410cetf9h wants to merge 1 commit into
Conversation
Signed-off-by: cetf <[email protected]>
This comment was marked as outdated.
This comment was marked as outdated.
|
I think this PR is valid, the parentheses do have a meaning here and are actually fixing a bug. In Java, the method call See the following: System.out.println("First %s" + ", second %s" + ", third".formatted("1", "2"));
// prints 'First %s, second %s, third'
System.out.println(("First %s" + ", second %s" + ", third").formatted("1", "2"));
// prints 'First 1, second 2, third'Reopening. |
This comment was marked as outdated.
This comment was marked as outdated.
@sbrannen
I did not use AI. 我没有使用AI |
Fixes: gh-36410 Signed-off-by: cetf <[email protected]>
|
Thanks @cetf9h this is now merged and backported |

I found some code to simplify when using IDEA to inspect the code, so I submit a PR here.