Skip to content

Commit

Permalink
Stabilize setExtensionRegistry() of ProtoLiteUtils and ProtoUtils (#1…
Browse files Browse the repository at this point in the history
…0392)

Closes #1787
  • Loading branch information
sergiitk committed Jul 19, 2023
1 parent 313c343 commit e3016cf
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ public final class ProtoLiteUtils {
*
* @since 1.0.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/1787")
public static void setExtensionRegistry(ExtensionRegistryLite newRegistry) {
globalRegistry = checkNotNull(newRegistry, "newRegistry");
}
Expand Down
1 change: 0 additions & 1 deletion protobuf/src/main/java/io/grpc/protobuf/ProtoUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ public final class ProtoUtils {
*
* @since 1.16.0
*/
@ExperimentalApi("https://github.com/grpc/grpc-java/issues/1787")
public static void setExtensionRegistry(ExtensionRegistry registry) {
ProtoLiteUtils.setExtensionRegistry(registry);
}
Expand Down

0 comments on commit e3016cf

Please sign in to comment.