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 a410a4f commit 7b45316Copy full SHA for 7b45316
src/main/java/com/contentful/java/cda/Utils.java
@@ -25,7 +25,7 @@
25
* SDK utilities
26
*/
27
class Utils {
28
- static final Decoder decoder = new Decoder() {
+ static final Decoder DECODER = new Decoder() {
29
public String decode(String url) throws UnsupportedEncodingException {
30
return URLDecoder.decode(url, "UTF-8");
31
}
@@ -47,7 +47,7 @@ static void assertNotNull(Object object, String param) {
47
48
49
static String getQueryParamFromUrl(String url, String param) {
50
- return getQueryParamFromUrl(url, param, decoder);
+ return getQueryParamFromUrl(url, param, DECODER);
51
52
53
static String getQueryParamFromUrl(String url, String param, Decoder decoder) {
0 commit comments