package io.grpc; import io.grpc.ServerInterceptors; /* loaded from: classes6.dex */ public final class InternalServerInterceptors { public static ServerMethodDefinition wrapMethod(ServerMethodDefinition serverMethodDefinition, MethodDescriptor methodDescriptor) { return ServerInterceptors.wrapMethod(serverMethodDefinition, methodDescriptor); } public static ServerCallHandler interceptCallHandlerCreate(ServerInterceptor serverInterceptor, ServerCallHandler serverCallHandler) { return ServerInterceptors.InterceptCallHandler.create(serverInterceptor, serverCallHandler); } private InternalServerInterceptors() { } }