Skip to content

Commit

Permalink
chore(grpc-js): remove unused callcredentials parameter from insecure…
Browse files Browse the repository at this point in the history
… impl
  • Loading branch information
anuraaga committed Oct 11, 2023
1 parent 8374364 commit abac01a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/grpc-js/src/channel-credentials.ts
Original file line number Diff line number Diff line change
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 abac01a

Please sign in to comment.