Skip to content

Commit f9216de

Browse files
committed
remove unused beta annotatoins
1 parent 46128b2 commit f9216de

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

google-http-client-apache-v5/src/main/java/com/google/api/client/http/apache/v5/Apache5HttpTransport.java

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,7 @@ public final class Apache5HttpTransport extends HttpTransport {
6363
/** If the HTTP client uses mTLS channel. */
6464
private final boolean isMtls;
6565

66-
/**
67-
* {@link Beta} Constructor that uses {@link #newDefaultHttpClient()} for the Apache HTTP client.
68-
*/
69-
@Beta
66+
/** Constructor that uses {@link #newDefaultHttpClient()} for the Apache HTTP client. */
7067
public Apache5HttpTransport() {
7168
this(newDefaultHttpClient(), false);
7269
}
@@ -109,7 +106,6 @@ public Apache5HttpTransport(HttpClient httpClient, boolean isMtls) {
109106
}
110107

111108
/**
112-
* {@link Beta} <br>
113109
* Creates a new instance of the Apache HTTP client that is used by the {@link
114110
* #Apache5HttpTransport()} constructor.
115111
*
@@ -127,14 +123,13 @@ public Apache5HttpTransport(HttpClient httpClient, boolean isMtls) {
127123
*
128124
* @return new instance of the Apache HTTP client
129125
*/
130-
@Beta
131126
public static HttpClient newDefaultHttpClient() {
132127
return newDefaultCloseableHttpClientBuilder().build();
133128
}
134129

135130
/**
136-
* {@link Beta} Creates a new Apache HTTP client builder that is used by the {@link
137-
* #Apache5HttpTransport()} constructor.
131+
* Creates a new Apache HTTP client builder that is used by the {@link #Apache5HttpTransport()}
132+
* constructor.
138133
*
139134
* <p>Settings:
140135
*
@@ -151,7 +146,6 @@ public static HttpClient newDefaultHttpClient() {
151146
*
152147
* @return new instance of the Apache HTTP client builder
153148
*/
154-
@Beta
155149
public static HttpClientBuilder newDefaultCloseableHttpClientBuilder() {
156150
PoolingHttpClientConnectionManager connectionManager =
157151
PoolingHttpClientConnectionManagerBuilder.create()

0 commit comments

Comments
 (0)