core: make enableFullStreamDecompression non-abstract

This commit is contained in:
Eric Gribkoff 2017-09-26 10:00:43 -07:00 committed by GitHub
parent 80334d5b2f
commit 63c660b29c
1 changed files with 4 additions and 1 deletions

View File

@ -200,10 +200,13 @@ public abstract class ManagedChannelBuilder<T extends ManagedChannelBuilder<T>>
* <p>EXPERIMENTAL: This method is here to enable an experimental feature, and may be changed or
* removed once the feature is stable.
*
* @throws UnsupportedOperationException if unsupported
* @since 1.7.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/3399")
public abstract T enableFullStreamDecompression();
public T enableFullStreamDecompression() {
throw new UnsupportedOperationException();
}
/**
* Set the decompression registry for use in the channel. This is an advanced API call and