Differences From Artifact [f39a379181]:
- File src/exceptions/PGException.m — part of check-in [fc8e42990e] at 2017-05-09 23:19:20 on branch trunk — Adjust to recent ObjFW changes (user: js, size: 772) [annotate] [blame] [check-ins using]
To Artifact [0525cbb5f6]:
- File
src/exceptions/PGException.m
— part of check-in
[6307a38198]
at
2017-05-10 23:46:05
on branch trunk
— Move private methods to separate headers
Also fixes a typo and adds two missing nullability annotations. (user: js, size: 805) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 | #import "PGException.h" @implementation PGException @synthesize connection = _connection; + (instancetype)exceptionWithConnection: (PGConnection *)connection { return [[[self alloc] initWithConnection: connection] autorelease]; | > | 1 2 3 4 5 6 7 8 9 | #import "PGException.h" #import "PGConnection+Private.h" @implementation PGException @synthesize connection = _connection; + (instancetype)exceptionWithConnection: (PGConnection *)connection { return [[[self alloc] initWithConnection: connection] autorelease]; |
︙ | ︙ |