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

Commit

Permalink
fix: remove unused @InternalExtensionOnly from CallContext classes (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
miraleung committed Feb 18, 2021
1 parent 0cf1383 commit a8d3a2d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
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

0 comments on commit a8d3a2d

Please sign in to comment.