Differences From Artifact [ef68919153]:
- File
src/OFTarArchive.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: 2384) [annotate] [blame] [check-ins using]
To Artifact [8c89569c12]:
- File src/OFTarArchive.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: 2375) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
47 48 49 50 51 52 53 |
return self;
}
#ifdef OF_HAVE_FILES
- initWithPath: (OFString *)path
{
| < < < | | > > | | < < < | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
return self;
}
#ifdef OF_HAVE_FILES
- initWithPath: (OFString *)path
{
OFFile *file = [[OFFile alloc] initWithPath: path
mode: @"rb"];
@try {
return [self initWithStream: file];
} @finally {
[file release];
}
}
#endif
- (void)dealloc
{
[_stream release];
[_lastReturnedEntry release];
|
| ︙ | ︙ |