Skip to content

Commit bc9cfb6

Browse files
committed
Remove trailing whitespace.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1429821 13f79535-47bb-0310-9956-ffa450edef68
1 parent ae4ea77 commit bc9cfb6

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ private void testByChunk(byte[] encoded, byte[] decoded, int chunkSize, byte[] s
287287

288288
// Start with encode.
289289
InputStream in;
290-
290+
291291
in = new Base32InputStream(new ByteArrayInputStream(decoded), true, chunkSize, seperator);
292292
byte[] output = Base32TestData.streamToBytes(in);
293293

@@ -363,7 +363,7 @@ private void testByteByByte(byte[] encoded, byte[] decoded, int chunkSize, byte[
363363
assertTrue("Streaming base32 decode", Arrays.equals(output, decoded));
364364

365365
in.close();
366-
366+
367367
// I always wanted to do this! (wrap encoder with decoder etc etc).
368368
in = new ByteArrayInputStream(decoded);
369369
for (int i = 0; i < 10; i++) {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ private void testByChunk(byte[] encoded, byte[] decoded, int chunkSize, byte[] s
308308
assertTrue("Streaming base64 encode", Arrays.equals(output, encoded));
309309

310310
in.close();
311-
311+
312312
// Now let's try decode.
313313
in = new Base64InputStream(new ByteArrayInputStream(encoded));
314314
output = Base64TestData.streamToBytes(in);
@@ -376,7 +376,7 @@ private void testByteByByte(byte[] encoded, byte[] decoded, int chunkSize, byte[
376376
assertTrue("Streaming base64 decode", Arrays.equals(output, decoded));
377377

378378
in.close();
379-
379+
380380
// I always wanted to do this! (wrap encoder with decoder etc etc).
381381
in = new ByteArrayInputStream(decoded);
382382
for (int i = 0; i < 10; i++) {

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@
2626

2727
/**
2828
* Series of tests for the Match Rating Approach algorithm.
29-
*
29+
*
3030
* General naming nomeneclature for the test is of the form:
3131
* GeneralMetadataOnTheTestArea_ActualTestValues_ExpectedResult
32-
*
32+
*
3333
* An unusual value is indicated by the term "corner case"
3434
*/
3535
public class MatchRatingApproachEncoderTest extends StringEncoderAbstractTest<MatchRatingApproachEncoder> {
3636

37-
37+
3838

3939
// ********** BEGIN REGION - TEST SUPPORT METHODS
4040

0 commit comments

Comments
 (0)