Skip to content

Commit e0310e1

Browse files
committed
Remove extra blank line.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1378950 13f79535-47bb-0310-9956-ffa450edef68
1 parent 17a88b3 commit e0310e1

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

  • src/main/java/org/apache/commons/codec/binary

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,6 @@ void encode(byte[] in, int inPos, int inAvail, Context context) { // package pro
396396
buffer[context.pos++] = PAD;
397397
buffer[context.pos++] = PAD;
398398
break;
399-
400399
case 2 : // 2 octets = 16 bits to use
401400
buffer[context.pos++] = encodeTable[(int)(context.lbitWorkArea >> 11) & MASK_5BITS]; // 16-1*5 = 11
402401
buffer[context.pos++] = encodeTable[(int)(context.lbitWorkArea >> 6) & MASK_5BITS]; // 16-2*5 = 6

0 commit comments

Comments
 (0)