Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
Niranjan Jayakar committed Apr 24, 2020
1 parent df94e63 commit fbba427
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-apigateway/lib/authorizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export abstract class Authorizer extends Resource implements IAuthorizer {
public readonly abstract authorizerId: string;
public readonly authorizationType?: AuthorizationType = AuthorizationType.CUSTOM;

constructor(scope: Construct, id: string) {
public constructor(scope: Construct, id: string) {
super(scope, id);

Object.defineProperty(this, AUTHORIZER_SYMBOL, { value: true });
Expand Down

0 comments on commit fbba427

Please sign in to comment.