Skip to content

Commit

Permalink
api: removed deprecated method blockingExecutor (#7242)
Browse files Browse the repository at this point in the history
  • Loading branch information
wanyingd1996 committed Aug 12, 2020
1 parent e19bdf3 commit 6eced95
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
7 changes: 0 additions & 7 deletions api/src/main/java/io/grpc/ForwardingChannelBuilder.java
Expand Up @@ -77,13 +77,6 @@ public T offloadExecutor(Executor executor) {
return thisT();
}

@Deprecated
@Override
public T blockingExecutor(Executor executor) {
delegate().blockingExecutor(executor);
return thisT();
}

@Override
public T intercept(List<ClientInterceptor> interceptors) {
delegate().intercept(interceptors);
Expand Down
6 changes: 0 additions & 6 deletions api/src/main/java/io/grpc/ManagedChannelBuilder.java
Expand Up @@ -124,12 +124,6 @@ public T offloadExecutor(Executor executor) {
throw new UnsupportedOperationException();
}

@Deprecated
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/6279")
public T blockingExecutor(Executor executor) {
return offloadExecutor(executor);
}

/**
* Adds interceptors that will be called before the channel performs its real work. This is
* functionally equivalent to using {@link ClientInterceptors#intercept(Channel, List)}, but while
Expand Down

0 comments on commit 6eced95

Please sign in to comment.