Skip to content

Commit

Permalink
chore(sqs): remove extra unnecessary semicolon (aws#18257)
Browse files Browse the repository at this point in the history
----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
skinny85 authored and TikiTDO committed Feb 21, 2022
1 parent 85d508c commit b35d16c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-sqs/lib/queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ export class Queue extends QueueBase {
public readonly encryptionMasterKey = attrs.keyArn
? kms.Key.fromKeyArn(this, 'Key', attrs.keyArn)
: undefined;
public readonly fifo: boolean = this.determineFifo();;
public readonly fifo: boolean = this.determineFifo();

protected readonly autoCreatePolicy = false;

Expand Down

0 comments on commit b35d16c

Please sign in to comment.