Skip to content

Commit a783106

Browse files
committed
Update header information
1 parent 7f65261 commit a783106

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Sources/OpenSwiftUICore/Data/Util/ObjectCache.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// ObjectCache.swift
33
// OpenSwiftUICore
44
//
5-
// Audited for 6.0.87
5+
// Audited for 6.5.4
66
// Status: Complete
7-
// ID: FCB2944DC319042A861E82C8B244E212
7+
// ID: FCB2944DC319042A861E82C8B244E212 (SwiftUICore)
88

99
final package class ObjectCache<Key, Value> where Key: Hashable {
1010
let constructor: (Key) -> Value

Tests/OpenSwiftUICoreTests/Data/Util/ObjectCacheTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ struct ObjectCacheTests {
1111
let table = [
1212
0: "0",
1313
1: "1",
14-
2: "2"
14+
2: "2",
1515
]
1616

1717
var accessCounts = [
1818
0: 0,
1919
1: 0,
20-
2: 0
20+
2: 0,
2121
]
2222

2323
let cache: ObjectCache<Int, String> = ObjectCache { key in

0 commit comments

Comments
 (0)