Skip to content

Commit

Permalink
Merge pull request #2596 from anuraaga/clean-insecure-constructor
Browse files Browse the repository at this point in the history
chore(grpc-js): remove unused callcredentials parameter from insecure impl
  • Loading branch information
murgatroid99 committed Oct 12, 2023
2 parents 8374364 + abac01a commit 4342f60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/grpc-js/src/channel-credentials.ts
Expand Up @@ -163,8 +163,8 @@ export abstract class ChannelCredentials {
}

class InsecureChannelCredentialsImpl extends ChannelCredentials {
constructor(callCredentials?: CallCredentials) {
super(callCredentials);
constructor() {
super();
}

compose(callCredentials: CallCredentials): never {
Expand Down

0 comments on commit 4342f60

Please sign in to comment.