Skip to content

Commit 6a706a6

Browse files
committed
Make ESCAPE_CHAR as static as in other classes (QuotedPrintableCodec, URLCodec)
1 parent 8e50846 commit 6a706a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class PercentCodec implements BinaryEncoder, BinaryDecoder {
4242
* The escape character used by the Percent-Encoding in order to introduce an encoded character.
4343
*/
4444

45-
private final byte ESCAPE_CHAR = '%';
45+
private static final byte ESCAPE_CHAR = '%';
4646

4747
/**
4848
* The bit set used to store the character that should be always encoded

0 commit comments

Comments
 (0)