Skip to content

Commit 809bc21

Browse files
committed
[CODEC-240] Add Percent-Encoding Codec (described in RFC3986 and RFC7578). Sort members.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1814517 13f79535-47bb-0310-9956-ffa450edef68
1 parent 8edd3ec commit 809bc21

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/org/apache/commons/codec/net/PercentCodec.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ public class PercentCodec implements BinaryEncoder, BinaryDecoder {
4141
/**
4242
* The escape character used by the Percent-Encoding in order to introduce an encoded character.
4343
*/
44-
44+
4545
private final byte ESCAPE_CHAR = '%';
46-
46+
4747
/**
4848
* The bit set used to store the character that should be always encoded
4949
*/
5050
private final BitSet alwaysEncodeChars = new BitSet();
51-
51+
5252
/**
5353
* The flag defining if the space character should be encoded as '+'
5454
*/
5555
private final boolean plusForSpace;
56-
56+
5757
/**
5858
* The minimum and maximum code of the bytes that is inserted in the bit set, used to prevent look-ups
5959
*/

0 commit comments

Comments
 (0)