api: stabilize safe and idempotent methods in MethodDescriptor

This commit is contained in:
Carl Mastrangelo 2019-09-25 19:29:42 -07:00 committed by Eric Anderson
parent ed845991db
commit 4503a233f4
1 changed files with 0 additions and 4 deletions

View File

@ -350,7 +350,6 @@ public final class MethodDescriptor<ReqT, RespT> {
*
* @since 1.0.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/1775")
public boolean isIdempotent() {
return idempotent;
}
@ -362,7 +361,6 @@ public final class MethodDescriptor<ReqT, RespT> {
*
* @since 1.1.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/1775")
public boolean isSafe() {
return safe;
}
@ -539,7 +537,6 @@ public final class MethodDescriptor<ReqT, RespT> {
*
* @since 1.1.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/1775")
public Builder<ReqT, RespT> setIdempotent(boolean idempotent) {
this.idempotent = idempotent;
if (!idempotent) {
@ -555,7 +552,6 @@ public final class MethodDescriptor<ReqT, RespT> {
*
* @since 1.1.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/1775")
public Builder<ReqT, RespT> setSafe(boolean safe) {
this.safe = safe;
if (safe) {