We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c776670 commit 18a936eCopy full SHA for 18a936e
vertx-web-client/src/main/java/io/vertx/ext/web/client/WebClientConfig.java
@@ -256,13 +256,4 @@ public WebClientConfig setName(String name) {
256
public WebClientConfig setFollowAlternativeServices(boolean followAlternativeServices) {
257
return (WebClientConfig) super.setFollowAlternativeServices(followAlternativeServices);
258
}
259
-
260
- public static String loadUserAgent() {
261
- String userAgent = "Vert.x-WebClient";
262
- String version = VertxInternal.version();
263
- if (version.length() > 0) {
264
- userAgent += "/" + version;
265
- }
266
- return userAgent;
267
268
0 commit comments