Skip to content

Commit 82c6832

Browse files
committed
Fix double optional
1 parent 0f9e74a commit 82c6832

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+6
-246
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# Change Log
1+
# Change Log

Sources/AppwriteModels/AlgoArgon2.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,16 @@ public class AlgoArgon2 {
77
/// Algo type.
88
public let type: String
99

10-
1110
/// Memory used to compute hash.
1211
public let memoryCost: Int
1312

14-
1513
/// Amount of time consumed to compute hash
1614
public let timeCost: Int
1715

18-
1916
/// Number of threads used to compute hash.
2017
public let threads: Int
2118

2219

23-
2420
init(
2521
type: String,
2622
memoryCost: Int,

Sources/AppwriteModels/AlgoBcrypt.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ public class AlgoBcrypt {
88
public let type: String
99

1010

11-
1211
init(
1312
type: String
1413
) {

Sources/AppwriteModels/AlgoMd5.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ public class AlgoMd5 {
88
public let type: String
99

1010

11-
1211
init(
1312
type: String
1413
) {

Sources/AppwriteModels/AlgoPhpass.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ public class AlgoPhpass {
88
public let type: String
99

1010

11-
1211
init(
1312
type: String
1413
) {

Sources/AppwriteModels/AlgoScrypt.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,19 @@ public class AlgoScrypt {
77
/// Algo type.
88
public let type: String
99

10-
1110
/// CPU complexity of computed hash.
1211
public let costCpu: Int
1312

14-
1513
/// Memory complexity of computed hash.
1614
public let costMemory: Int
1715

18-
1916
/// Parallelization of computed hash.
2017
public let costParallel: Int
2118

22-
2319
/// Length used to compute hash.
2420
public let length: Int
2521

2622

27-
2823
init(
2924
type: String,
3025
costCpu: Int,

Sources/AppwriteModels/AlgoScryptModified.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,16 @@ public class AlgoScryptModified {
77
/// Algo type.
88
public let type: String
99

10-
1110
/// Salt used to compute hash.
1211
public let salt: String
1312

14-
1513
/// Separator used to compute hash.
1614
public let saltSeparator: String
1715

18-
1916
/// Key used to compute hash.
2017
public let signerKey: String
2118

2219

23-
2420
init(
2521
type: String,
2622
salt: String,

Sources/AppwriteModels/AlgoSha.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ public class AlgoSha {
88
public let type: String
99

1010

11-
1211
init(
1312
type: String
1413
) {

Sources/AppwriteModels/Continent.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@ public class Continent {
77
/// Continent name.
88
public let name: String
99

10-
1110
/// Continent two letter code.
1211
public let code: String
1312

1413

15-
1614
init(
1715
name: String,
1816
code: String

Sources/AppwriteModels/ContinentList.swift

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@ public class ContinentList {
77
/// Total number of continents documents that matched your query.
88
public let total: Int
99

10-
1110
/// List of continents.
1211
public let continents: [Continent]
1312

1413

15-
1614
init(
1715
total: Int,
1816
continents: [Continent]

0 commit comments

Comments
 (0)