Skip to content

Commit 588216a

Browse files
Prepare for release 6.0.23.RELEASE-TT.3
1 parent 10312fa commit 588216a

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=6.0.23.RELEASE-TT.2
1+
version=6.0.23.RELEASE-TT.3
22

33
org.gradle.caching=true
44
org.gradle.jvmargs=-Xmx2048m

spring-core/src/test/java/org/springframework/util/PatternMatchUtilsTests.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,6 @@ void nullAndEmptyValues() {
3939

4040
@Test
4141
void trivial() {
42-
assertThat(PatternMatchUtils.simpleMatch((String) null, "")).isFalse();
43-
assertThat(PatternMatchUtils.simpleMatch("1", null)).isFalse();
44-
doTest("*", "123", true);
45-
doTest("123", "123", true);
46-
testMixedCaseMatch("abC", "Abc");
4742
assertMatches("", "");
4843
assertMatches("123", "123");
4944
assertMatches("*", "123");

0 commit comments

Comments
 (0)