Overview
Comment: | OFData: Add missing nullability declarations |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
918096e2aa3863bf54fb46a740a2d860 |
User & Date: | js on 2022-06-08 16:32:38 |
Other Links: | manifest | tags |
Context
2022-06-12
| ||
06:27 | Remove a few useless methods check-in: 6228b691b5 user: js tags: trunk | |
2022-06-08
| ||
16:32 | OFData: Add missing nullability declarations check-in: 918096e2aa user: js tags: trunk | |
16:20 | OFDictionary: Add some forgotten documentation check-in: 6a912c61aa user: js tags: trunk | |
Changes
Modified src/OFData.h from [9d153a29a2] to [858a27b08c].
︙ | |||
41 42 43 44 45 46 47 | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 | - + - + - + + | * * For security reasons, serialization and deserialization is only implemented * for OFData with item size 1. */ @interface OFData: OFObject <OFCopying, OFMutableCopying, OFComparing, OFSerialization, OFMessagePackRepresentation> { |
︙ | |||
171 172 173 174 175 176 177 | 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | - + - + - + - + | * @param URL The URL to the contents for the OFData * @return A new autoreleased OFData */ + (instancetype)dataWithContentsOfURL: (OFURL *)URL; /** * @brief Creates a new OFData with an item size of 1, containing the data of |
︙ | |||
270 271 272 273 274 275 276 | 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | - + - + | * @param URL The URL to the contents for the OFData * @return A new autoreleased OFData */ - (instancetype)initWithContentsOfURL: (OFURL *)URL; /** * @brief Initializes an already allocated OFData with an item size of 1, |
︙ |
Modified src/OFMutableData.h from [98bc9e545b] to [5eba71457e].
︙ | |||
35 36 37 38 39 40 41 | 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | - + + | * @brief All items of the OFMutableData as a C array. * * @warning The pointer is only valid until the OFMutableData is changed! * * Modifying the returned array directly is allowed and will change the contents * of the data. */ |
︙ |