Incomplete debug message in ConfigurationClassBeanDefinitionReader#36410
Closed
cetf9h wants to merge 1 commit intospring-projects:mainfrom
Closed
Incomplete debug message in ConfigurationClassBeanDefinitionReader#36410cetf9h wants to merge 1 commit intospring-projects:mainfrom
cetf9h wants to merge 1 commit intospring-projects:mainfrom
Conversation
Signed-off-by: cetf <[email protected]>
This comment was marked as outdated.
This comment was marked as outdated.
Member
|
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.
Contributor
Author
@sbrannen
I did not use AI. 我没有使用AI |
bclozel
pushed a commit
that referenced
this pull request
Mar 3, 2026
Fixes: gh-36410 Signed-off-by: cetf <[email protected]>
Member
|
Thanks @cetf9h this is now merged and backported |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

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