Differences From Artifact [829d513f17]:
- File
src/OFXMLParser.m
— part of check-in
[4af49a13c3]
at
2017-05-07 20:10:13
on branch trunk
— Small code style change
Casts are now written like types in variable declarations. (user: js, size: 24013) [annotate] [blame] [check-ins using]
To Artifact [f6cfcd55b0]:
- File src/OFXMLParser.m — part of check-in [469a496cd2] at 2017-05-08 21:37:11 on branch trunk — Add OF_DESIGNATED_INITIALIZER & OF_METHOD_FAMILY (user: js, size: 24012) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
284 285 286 287 288 289 290 |
}
#ifdef OF_HAVE_FILES
- (void)parseFile: (OFString *)path
{
OFFile *file = [[OFFile alloc] initWithPath: path
mode: @"rb"];
| < | 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
}
#ifdef OF_HAVE_FILES
- (void)parseFile: (OFString *)path
{
OFFile *file = [[OFFile alloc] initWithPath: path
mode: @"rb"];
@try {
[self parseStream: file];
} @finally {
[file release];
}
}
#endif
|
| ︙ | ︙ |