Skip to content

Commit abac01a

Browse files
committed
chore(grpc-js): remove unused callcredentials parameter from insecure impl
1 parent 8374364 commit abac01a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/grpc-js/src/channel-credentials.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ export abstract class ChannelCredentials {
163163
}
164164

165165
class InsecureChannelCredentialsImpl extends ChannelCredentials {
166-
constructor(callCredentials?: CallCredentials) {
167-
super(callCredentials);
166+
constructor() {
167+
super();
168168
}
169169

170170
compose(callCredentials: CallCredentials): never {

0 commit comments

Comments
 (0)