File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ NS_ASSUME_NONNULL_BEGIN
28
28
@returns
29
29
The object or nil if the object could not be parsed.
30
30
*/
31
- + (nullable id )decodeObjectFromData : (NSData *)data ;
31
+ + (nullable id )decodeDataObjectFrom : (NSData *)data ;
32
32
33
33
/* !
34
34
@abstract
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ - (NSData *)dequeueBytes:(NSUInteger)numberOfBytes;
25
25
26
26
@implementation YKFCBORDecoder
27
27
28
- + (nullable id )decodeObjectFromData : (NSData *)data {
28
+ + (nullable id )decodeDataObjectFrom : (NSData *)data {
29
29
NSInputStream *decoderInputStream = [[NSInputStream alloc ] initWithData: data];
30
30
[decoderInputStream open ];
31
31
id result = [YKFCBORDecoder decodeObjectFrom: decoderInputStream];
You can’t perform that action at this time.
0 commit comments