aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-http-client
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2021-12-03 13:54:35 +0100
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2021-12-03 14:06:05 +0100
commit0cd340dc4646b397d84cfab38a8337bc7bdcaa4f (patch)
tree8012bf46eab169059317b8b4daa42b5898f68e55 /vespa-http-client
parent76a3908ea1d3475d36a7b2d15b867a18d7952862 (diff)
Add custom `@Beta` annotation
Replace use of Guava's `com.google.common.annotations.Beta` with custom annotation.
Diffstat (limited to 'vespa-http-client')
-rw-r--r--vespa-http-client/src/main/java/com/yahoo/vespa/http/client/config/FeedParams.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/config/FeedParams.java b/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/config/FeedParams.java
index 19a28bbacaf..01f314a7e36 100644
--- a/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/config/FeedParams.java
+++ b/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/config/FeedParams.java
@@ -1,8 +1,6 @@
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.http.client.config;
-import com.google.common.annotations.Beta;
-
import java.util.concurrent.TimeUnit;
/**
@@ -54,7 +52,6 @@ public final class FeedParams {
* @param silentUpgrade true for reducing "false" 4xx/5xx.
* @return this, for chaining
*/
- @Beta
public Builder setSilentUpgrade(boolean silentUpgrade) {
this.silentUpgrade = silentUpgrade;
return this;
@@ -184,7 +181,6 @@ public final class FeedParams {
/**
* Set what frequency to poll for async responses. Default is 10hz (every 0.1s), but 1000hz when using SyncFeedClient
*/
- @Beta
public Builder setIdlePollFrequency(Double idlePollFrequency) {
this.idlePollFrequency = idlePollFrequency;
return this;