Skip to content

Commit afb3017

Browse files
author
Simon Pilkington
committed
Fix SwiftLint markers.
1 parent c481213 commit afb3017

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/SmokeDynamoDB/InMemoryDynamoDBKeysProjection.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// swiftlint:disable cyclomatic_complexity
12
// Copyright 2018-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
23
//
34
// Licensed under the Apache License, Version 2.0 (the "License").
@@ -26,7 +27,6 @@ public class InMemoryDynamoDBKeysProjection: DynamoDBKeysProjection {
2627
self.keys = keys
2728
}
2829

29-
// swiftlint:disable cyclomatic_complexity
3030
public func querySync<AttributesType>(forPartitionKey partitionKey: String,
3131
sortKeyCondition: AttributeCondition?) throws
3232
-> [CompositePrimaryKey<AttributesType>] {

Sources/SmokeDynamoDB/InMemoryDynamoDBTable.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// swiftlint:disable cyclomatic_complexity
12
// Copyright 2018-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
23
//
34
// Licensed under the Apache License, Version 2.0 (the "License").
@@ -207,7 +208,6 @@ public class InMemoryDynamoDBTable: DynamoDBTable {
207208
}
208209
}
209210

210-
// swiftlint:disable cyclomatic_complexity
211211
public func querySync<AttributesType, PossibleTypes>(forPartitionKey partitionKey: String,
212212
sortKeyCondition: AttributeCondition?) throws
213213
-> [PolymorphicDatabaseItem<AttributesType, PossibleTypes>] {

0 commit comments

Comments
 (0)