Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed deprecated method blockingExecutor #7242

Merged
merged 1 commit into from Aug 12, 2020
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
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