Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

fix: remove unused @InternalExtensionOnly from CallContext classes [gax-java] #1304

Merged
merged 1 commit into from Feb 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -30,7 +30,6 @@
package com.google.api.gax.grpc;

import com.google.api.core.BetaApi;
import com.google.api.core.InternalExtensionOnly;
import com.google.api.gax.rpc.ApiCallContext;
import com.google.api.gax.rpc.TransportChannel;
import com.google.api.gax.rpc.internal.Headers;
Expand Down Expand Up @@ -62,7 +61,6 @@
* and thread safety of the arguments solely depends on the arguments themselves.
*/
@BetaApi("Reference ApiCallContext instead - this class is likely to experience breaking changes")
@InternalExtensionOnly
public final class GrpcCallContext implements ApiCallContext {
static final CallOptions.Key<ApiTracer> TRACER_KEY = Key.create("gax.tracer");

Expand Down
Expand Up @@ -30,7 +30,6 @@
package com.google.api.gax.httpjson;

import com.google.api.core.BetaApi;
import com.google.api.core.InternalExtensionOnly;
import com.google.api.gax.rpc.ApiCallContext;
import com.google.api.gax.rpc.TransportChannel;
import com.google.api.gax.rpc.internal.Headers;
Expand All @@ -56,7 +55,6 @@
* arguments solely depends on the arguments themselves.
*/
@BetaApi
@InternalExtensionOnly
public final class HttpJsonCallContext implements ApiCallContext {
private final HttpJsonChannel channel;
private final Duration timeout;
Expand Down