@@ -10,15 +10,15 @@ public struct Wrapper<W, S> {
10
10
public subscript< V> ( propertyKeyPath propertyPath: KeyPath < W , V > ,
11
11
storageKeyPath storagePath: KeyPath < S , V > ) -> V {
12
12
get {
13
- print ( " in read-only getter storage: \( storagePath) , property: \( propertyPath ) " )
13
+ print ( " in read-only getter storage: \( storagePath) " )
14
14
return underlying [ keyPath: storagePath]
15
15
}
16
16
}
17
17
18
18
public subscript< V> ( propertyKeyPath propertyPath: KeyPath < W , V > ,
19
19
storageKeyPath storagePath: WritableKeyPath < S , V > ) -> V {
20
20
get {
21
- print ( " in getter storage: \( storagePath) , property: \( propertyPath ) " )
21
+ print ( " in getter storage: \( storagePath) " )
22
22
return underlying [ keyPath: storagePath]
23
23
}
24
24
set {
@@ -31,7 +31,7 @@ public struct Wrapper<W, S> {
31
31
propertyKeyPath propertyPath: KeyPath < W , V > ,
32
32
storageKeyPath storagePath: KeyPath < S , V > ) -> V {
33
33
get {
34
- print ( " in (reference type) let getter storage: \( storagePath) , property: \( propertyPath ) " )
34
+ print ( " in (reference type) let getter storage: \( storagePath) " )
35
35
return underlying [ keyPath: storagePath]
36
36
}
37
37
}
@@ -40,7 +40,7 @@ public struct Wrapper<W, S> {
40
40
propertyKeyPath propertyPath: KeyPath < W , V > ,
41
41
storageKeyPath storagePath: WritableKeyPath < S , V > ) -> V {
42
42
get {
43
- print ( " in (reference type) getter storage: \( storagePath) , property: \( propertyPath ) " )
43
+ print ( " in (reference type) getter storage: \( storagePath) " )
44
44
return underlying [ keyPath: storagePath]
45
45
}
46
46
set {
0 commit comments