Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Prev Previous commit
Next Next commit
remove unused method
  • Loading branch information
bparrishMines committed Dec 19, 2022
commit 5735b9c7b8d44bc5c3636f01c59d913e37933fea
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@
}
return @[ result ?: [NSNull null] ];
}
static id GetNullableObject(NSDictionary *dict, id key) {
id result = dict[key];
return (result == [NSNull null]) ? nil : result;
}
static id GetNullableObjectAtIndex(NSArray *array, NSInteger key) {
id result = array[key];
return (result == [NSNull null]) ? nil : result;
Expand Down