Skip to content

Commit 9996061

Browse files
authored
chore(sqs): remove extra unnecessary semicolon (#18257)
---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 7588b51 commit 9996061

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@aws-cdk/aws-sqs/lib/queue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ export class Queue extends QueueBase {
268268
public readonly encryptionMasterKey = attrs.keyArn
269269
? kms.Key.fromKeyArn(this, 'Key', attrs.keyArn)
270270
: undefined;
271-
public readonly fifo: boolean = this.determineFifo();;
271+
public readonly fifo: boolean = this.determineFifo();
272272

273273
protected readonly autoCreatePolicy = false;
274274

0 commit comments

Comments
 (0)