Overview
Comment: | Don't use private ObjFW functions |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
3e008e29646a6eaeccbc4560352d3444 |
User & Date: | js on 2024-08-17 00:19:23 |
Other Links: | manifest | tags |
Context
2024-08-17
| ||
00:20 | More consistent naming check-in: 58b8dc229f user: js tags: trunk | |
00:19 | Don't use private ObjFW functions check-in: 3e008e2964 user: js tags: trunk | |
2024-05-04
| ||
21:35 | Add "make check" check-in: 685fcf4c95 user: js tags: trunk | |
Changes
Modified src/IRCUser.m from [9205d72fe3] to [9f27229e45].
︙ | ︙ | |||
39 40 41 42 43 44 45 | + (instancetype)IRCUserWithString: (OFString *)string { return [[[self alloc] initWithString: string] autorelease]; } - (instancetype)initWithString: (OFString *)string { | < < | | | < > | | > | < < | | < < < | 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | + (instancetype)IRCUserWithString: (OFString *)string { return [[[self alloc] initWithString: string] autorelease]; } - (instancetype)initWithString: (OFString *)string { self = [super init]; @try { size_t pos; pos = [string rangeOfString: @"@"].location; if (pos == OFNotFound) @throw [OFInvalidFormatException exception]; _hostname = [[string substringFromIndex: pos + 1] copy]; string = [string substringToIndex: pos]; pos = [string rangeOfString: @"!"].location; if (pos == OFNotFound) @throw [OFInvalidFormatException exception]; _username = [[string substringFromIndex: pos + 1] copy]; _nickname = [[string substringToIndex: pos] copy]; } @catch (id e) { [self release]; @throw e; } return self; } - (void)dealloc { |
︙ | ︙ |