Differences From Artifact [bcf2de59e3]:
- File
src/exceptions/OFChangePermissionsFailedException.m
— part of check-in
[4f36894ce7]
at
2017-06-05 17:36:28
on branch trunk
— Clean up exceptions a little
This removes several initializers that omitted the errNo. Removing those
forces to think about whether there is a meaningful errNo to set instead
of just omitting it. (user: js, size: 1636) [annotate] [blame] [check-ins using]
To Artifact [63b300e4d8]:
- File
src/exceptions/OFChangePermissionsFailedException.m
— part of check-in
[2f4e0df8be]
at
2017-10-17 00:33:37
on branch trunk
— Do not use implicit method return types
Instead, explicitly declare them, as OF_ASSUME_NONNULL_{BEGIN,END} does
not apply to implicit return types. This means that after this commit,
all init methods have a nonnull return type, as they should have. (user: js, size: 1671) [annotate] [blame] [check-ins using]
| ︙ | |||
32 33 34 35 36 37 38 | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | - + - - - + + + |
errNo: (int)errNo
{
return [[[self alloc] initWithPath: path
permissions: permissions
errNo: errNo] autorelease];
}
|
| ︙ |