Skip to content

Commit 9b068a4

Browse files
committed
Remove Identifiable protocol
1 parent 3ad78fe commit 9b068a4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Sources/QRContactTracingCore/Common/Code/Code.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ import Foundation
5656
```
5757

5858
*/
59-
public protocol Code: Identifiable {
59+
public protocol Code {
6060

6161
/// An option is the input
6262
associatedtype Option: Hashable

Sources/QRContactTracingCore/Common/LocalContent.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import CommonCrypto
1818
Raw data can be stored into local database.
1919

2020
*/
21-
public struct LocalContent: Identifiable {
21+
public struct LocalContent {
2222

2323
/// Unique identifier is transportable key
2424
///

Sources/QRContactTracingCore/Common/TransportableContent.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import CommonCrypto
1616
And, to decrypt supplement data from an importation, local content is required.
1717

1818
*/
19-
public struct TransportableContent: Identifiable {
19+
public struct TransportableContent {
2020

2121
/// Identifier is based on key and encryptedData
2222
public var id: Data {

0 commit comments

Comments
 (0)