Skip to content

Commit 4b8197c

Browse files
authored
Update IsEqualCompressingWhiteSpace.java
change name
1 parent 5c8878f commit 4b8197c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

hamcrest/src/main/java/org/hamcrest/text/IsEqualCompressingWhiteSpace.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -99,27 +99,27 @@ public static Matcher<String> equalToCompressingWhiteSpace(String expectedString
9999
return new IsEqualCompressingWhiteSpace(expectedString, whiteSpaceType.MIX);
100100
}
101101

102-
public static Matcher<String> equalToCompressingSPACE(String expectedString) {
102+
public static Matcher<String> equalToCompressingSpace(String expectedString) {
103103
return new IsEqualCompressingWhiteSpace(expectedString, whiteSpaceType.SPACE);
104104
}
105105

106-
public static Matcher<String> equalToCompressingTAB(String expectedString) {
106+
public static Matcher<String> equalToCompressingTab(String expectedString) {
107107
return new IsEqualCompressingWhiteSpace(expectedString, whiteSpaceType.TAB);
108108
}
109109

110-
public static Matcher<String> equalToCompressingLINEFEED(String expectedString) {
110+
public static Matcher<String> equalToCompressingLineFeed(String expectedString) {
111111
return new IsEqualCompressingWhiteSpace(expectedString, whiteSpaceType.LINEFEED);
112112
}
113113

114-
public static Matcher<String> equalToCompressingFORMFEED(String expectedString) {
114+
public static Matcher<String> equalToCompressingFormFeed(String expectedString) {
115115
return new IsEqualCompressingWhiteSpace(expectedString, whiteSpaceType.FORMFEED);
116116
}
117117

118-
public static Matcher<String> equalToCompressingCARRIAGERETURN(String expectedString) {
118+
public static Matcher<String> equalToCompressingCarriageReturn(String expectedString) {
119119
return new IsEqualCompressingWhiteSpace(expectedString, whiteSpaceType.CARRIAGERETURN);
120120
}
121121

122-
public static Matcher<String> equalToCompressingMIX(String expectedString) {
122+
public static Matcher<String> equalToCompressingMix(String expectedString) {
123123
return new IsEqualCompressingWhiteSpace(expectedString, whiteSpaceType.MIX);
124124
}
125125

0 commit comments

Comments
 (0)