mirror of https://github.com/grpc/grpc-node.git
chore(grpc-js): remove unused callcredentials parameter from insecure impl
This commit is contained in:
parent
83743646cf
commit
abac01a9cf
|
@ -163,8 +163,8 @@ export abstract class ChannelCredentials {
|
|||
}
|
||||
|
||||
class InsecureChannelCredentialsImpl extends ChannelCredentials {
|
||||
constructor(callCredentials?: CallCredentials) {
|
||||
super(callCredentials);
|
||||
constructor() {
|
||||
super();
|
||||
}
|
||||
|
||||
compose(callCredentials: CallCredentials): never {
|
||||
|
|
Loading…
Reference in New Issue