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 d504fd8 commit b1fd1caCopy full SHA for b1fd1ca
springdoc-openapi-starter-common/src/main/java/org/springdoc/scalar/AbstractScalarController.java
@@ -28,7 +28,6 @@
28
29
import java.io.IOException;
30
import java.io.InputStream;
31
-import java.net.URLDecoder;
32
import java.nio.charset.StandardCharsets;
33
34
import com.fasterxml.jackson.core.JsonProcessingException;
@@ -131,16 +130,6 @@ protected ResponseEntity<byte[]> getScalarJs() throws IOException {
131
130
.body(jsContent);
132
}
133
134
- /**
135
- * Decode string.
136
- *
137
- * @param requestURI the request uri
138
- * @return the string
139
- */
140
- protected String decode(String requestURI) {
141
- return URLDecoder.decode(requestURI, StandardCharsets.UTF_8);
142
- }
143
-
144
/**
145
* Gets api docs url.
146
*
0 commit comments