Differences From Artifact [dec1e593aa]:
- File src/OFXMLParser.m — part of check-in [c8f7b90082] at 2017-07-22 20:50:27 on branch trunk — Split OFDataArray into OFData and OFMutableData (user: js, size: 23893) [annotate] [blame] [check-ins using]
To Artifact [913f851c54]:
- File
src/OFXMLParser.m
— part of check-in
[23e57c5040]
at
2017-07-22 23:04:35
on branch trunk
— OFFile: Simplify mode
This removes "b" for binary and always uses binary, as there is no good
reason to not use binary. (user: js, size: 23892) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
278 279 280 281 282 283 284 |
}
}
#ifdef OF_HAVE_FILES
- (void)parseFile: (OFString *)path
{
OFFile *file = [[OFFile alloc] initWithPath: path
| | | 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
}
}
#ifdef OF_HAVE_FILES
- (void)parseFile: (OFString *)path
{
OFFile *file = [[OFFile alloc] initWithPath: path
mode: @"r"];
@try {
[self parseStream: file];
} @finally {
[file release];
}
}
#endif
|
| ︙ | ︙ |