We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd26aeb commit 178040fCopy full SHA for 178040f
core/src/main/java/feign/Request.java
@@ -46,7 +46,7 @@ public enum ProtocolVersion {
46
HTTP_2("HTTP/2.0"),
47
MOCK;
48
49
- String protocolVersion;
+ final String protocolVersion;
50
51
ProtocolVersion() {
52
protocolVersion = name();
core/src/main/java/feign/template/Template.java
@@ -331,7 +331,7 @@ public enum EncodingOptions {
331
REQUIRED(true),
332
NOT_REQUIRED(false);
333
334
- private boolean shouldEncode;
+ private final boolean shouldEncode;
335
336
EncodingOptions(boolean shouldEncode) {
337
this.shouldEncode = shouldEncode;
0 commit comments