Skip to content

Commit 9164cd8

Browse files
committed
Checkstyle: Remove trailing spaces.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1634456 13f79535-47bb-0310-9956-ffa450edef68
1 parent a600bbf commit 9164cd8

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

src/main/java/org/apache/commons/codec/binary/StringUtils.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,24 +41,24 @@ public class StringUtils {
4141
* <p>
4242
* Compares two CharSequences, returning <code>true</code> if they represent equal sequences of characters.
4343
* </p>
44-
*
44+
*
4545
* <p>
4646
* <code>null</code>s are handled without exceptions. Two <code>null</code> references are considered to be equal.
4747
* The comparison is case sensitive.
4848
* </p>
49-
*
49+
*
5050
* <pre>
5151
* StringUtils.equals(null, null) = true
5252
* StringUtils.equals(null, "abc") = false
5353
* StringUtils.equals("abc", null) = false
5454
* StringUtils.equals("abc", "abc") = true
5555
* StringUtils.equals("abc", "ABC") = false
5656
* </pre>
57-
*
57+
*
5858
* <p>
5959
* Copied from Apache Commons Lang r1583482 on April 10, 2014 (day of 3.3.2 release).
6060
* </p>
61-
*
61+
*
6262
* @see Object#equals(Object)
6363
* @param cs1
6464
* the first CharSequence, may be <code>null</code>

src/main/java/org/apache/commons/codec/language/bm/Rule.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ public CharSequence getPhonemeText() {
141141

142142
/**
143143
* Deprecated since 1.9.
144-
*
145-
* @param right the Phoneme to join
146-
* @return a new Phoneme
144+
*
145+
* @param right the Phoneme to join
146+
* @return a new Phoneme
147147
* @deprecated since 1.9
148148
*/
149149
@Deprecated

src/test/java/org/apache/commons/codec/binary/Base32Test.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public class Base32Test {
6868
{"fooba" ,"MZXW6YTB"},
6969
{"foobar" ,"MZXW6YTBOI%%%%%%"},
7070
};
71-
71+
7272
@Test
7373
public void testBase32Samples() throws Exception {
7474
final Base32 codec = new Base32();
@@ -142,11 +142,11 @@ public void testRandomBytesHex() {
142142
//assertEquals(b[0],codec.decode(b[1]));
143143
}
144144
}
145-
145+
146146
@Test
147147
public void testBase32SamplesNonDefaultPadding() throws Exception {
148148
final Base32 codec = new Base32((byte)0x25); // '%' <=> 0x25
149-
149+
150150
for (final String[] element : BASE32_PAD_TEST_CASES) {
151151
assertEquals(element[1], codec.encodeAsString(element[0].getBytes(Charsets.UTF_8)));
152152
}

src/test/java/org/apache/commons/codec/binary/BaseNCodecTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public void testContainsAlphabetOrPad() {
166166
// public void testGetEncodedLength() {
167167
// fail("Not yet implemented");
168168
// }
169-
169+
170170
@Test
171171
public void testProvidePaddingByte() {
172172
// Given
@@ -184,10 +184,10 @@ void encode(final byte[] pArray, final int i, final int length, final Context co
184184
void decode(final byte[] pArray, final int i, final int length, final Context context) {
185185
}
186186
};
187-
187+
188188
// When
189189
byte actualPaddingByte = codec.pad;
190-
190+
191191
// Then
192192
assertEquals(0x25, actualPaddingByte);
193193
}

src/test/java/org/apache/commons/codec/language/DoubleMetaphoneTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1121,7 +1121,7 @@ public void testEmpty() {
11211121

11221122
@Test
11231123
public void testIsDoubleMetaphoneEqualBasic() {
1124-
final String[][] testFixture = new String[][] { {
1124+
final String[][] testFixture = new String[][] { {
11251125
"", "" }, {
11261126
"Case", "case" }, {
11271127
"CASE", "Case" }, {

0 commit comments

Comments
 (0)