chore(grpc-js): remove unused callcredentials parameter from insecure impl

This commit is contained in:
Anuraag Agrawal 2023-10-11 17:43:14 +09:00
parent 83743646cf
commit abac01a9cf
1 changed files with 2 additions and 2 deletions

View File

@ -163,8 +163,8 @@ export abstract class ChannelCredentials {
}
class InsecureChannelCredentialsImpl extends ChannelCredentials {
constructor(callCredentials?: CallCredentials) {
super(callCredentials);
constructor() {
super();
}
compose(callCredentials: CallCredentials): never {