Skip to content

Commit 46128b2

Browse files
committed
remove @SInCE annotations
1 parent b23f1f7 commit 46128b2

File tree

3 files changed

+3
-21
lines changed

3 files changed

+3
-21
lines changed

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,7 @@ public String getHeaderValue(int index) {
109109
return allHeaders[index].getValue();
110110
}
111111

112-
/**
113-
* Aborts execution of the request.
114-
*
115-
* @since 1.44
116-
*/
112+
/** Aborts execution of the request. */
117113
@Override
118114
public void disconnect() {
119115
request.abort();

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

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@
5454
* read the <a
5555
* href="https://github.com/apache/httpcomponents-client/blob/f898f1aca38f77f62a007856a674629cae5a02e6/httpclient5/src/test/java/org/apache/hc/client5/http/examples/ClientConfiguration.java">
5656
* Apache HTTP Client 5.x configuration example</a> for more complex configuration options.
57-
*
58-
* @since 1.44
5957
*/
6058
public final class Apache5HttpTransport extends HttpTransport {
6159

@@ -67,8 +65,6 @@ public final class Apache5HttpTransport extends HttpTransport {
6765

6866
/**
6967
* {@link Beta} Constructor that uses {@link #newDefaultHttpClient()} for the Apache HTTP client.
70-
*
71-
* @since 1.44
7268
*/
7369
@Beta
7470
public Apache5HttpTransport() {
@@ -130,7 +126,6 @@ public Apache5HttpTransport(HttpClient httpClient, boolean isMtls) {
130126
* </ul>
131127
*
132128
* @return new instance of the Apache HTTP client
133-
* @since 1.44
134129
*/
135130
@Beta
136131
public static HttpClient newDefaultHttpClient() {
@@ -155,7 +150,6 @@ public static HttpClient newDefaultHttpClient() {
155150
* </ul>
156151
*
157152
* @return new instance of the Apache HTTP client builder
158-
* @since 1.44
159153
*/
160154
@Beta
161155
public static HttpClientBuilder newDefaultCloseableHttpClientBuilder() {
@@ -218,11 +212,7 @@ public void shutdown() throws IOException {
218212
// otherwise no-op
219213
}
220214

221-
/**
222-
* Returns the Apache HTTP client.
223-
*
224-
* @since 1.44
225-
*/
215+
/** Returns the Apache HTTP client. */
226216
public HttpClient getHttpClient() {
227217
return httpClient;
228218
}

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,5 @@
1212
* the License.
1313
*/
1414

15-
/**
16-
* HTTP Transport library for Google API's based on Apache HTTP Client/Core version 5.x
17-
*
18-
* @since 1.44
19-
*/
15+
/** HTTP Transport library for Google API's based on Apache HTTP Client/Core version 5.x */
2016
package com.google.api.client.http.apache.v5;

0 commit comments

Comments
 (0)