Skip to content

Fix issue #2743 #2744

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 21, 2023
Merged

Fix issue #2743 #2744

merged 1 commit into from
Oct 21, 2023

Conversation

mawen12
Copy link
Contributor

@mawen12 mawen12 commented Oct 18, 2023

Linked Issue #2743

By swap the positions of two parameter values to fix it.

public Criteria startsWith(String s) {
        ...
        // if error, the message contains '"<s>"*'
	assertNoBlankInWildcardQuery(s, false, true); 
	...
}

public Criteria endsWith(String s) {
        ...
	// if error, the message contains '*"<s>"'
	assertNoBlankInWildcardQuery(s, true, false);
	...
}

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged label Oct 18, 2023
@sothawo sothawo merged commit a0b04a3 into spring-projects:main Oct 21, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: waiting-for-triage An issue we've not yet triaged
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants