ObjFW  Check-in [e8c255e16b]

Overview
Comment:Reorder declarations for consistency
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: e8c255e16bef3b82cfd96f846555b3da85e0c6f59ec31eb8377472a2d19904dc
User & Date: js on 2022-04-20 13:17:13
Other Links: manifest | tags
Context
2022-04-23
12:26
More declaration reordering and nullability fixes check-in: 59fc5153a1 user: js tags: trunk
2022-04-20
13:17
Reorder declarations for consistency check-in: e8c255e16b user: js tags: trunk
13:12
Reorder declaration for consistency check-in: 45162673a5 user: js tags: trunk
Changes

Modified src/exceptions/OFNotOpenException.h from [8d763bd50d] to [45f02f6f12].

28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53


54
55
56
}

/**
 * @brief The object which is not open, connected or bound.
 */
@property (readonly, nonatomic) id object;

+ (instancetype)exception OF_UNAVAILABLE;

/**
 * @brief Creates a new, autoreleased not open exception.
 *
 * @param object The object which is not open, connected or bound
 * @return A new, autoreleased not open exception
 */
+ (instancetype)exceptionWithObject: (id)object;

- (instancetype)init OF_UNAVAILABLE;

/**
 * @brief Initializes an already allocated not open exception.
 *
 * @param object The object which is not open, connected or bound
 * @return An initialized not open exception
 */
- (instancetype)initWithObject: (id)object OF_DESIGNATED_INITIALIZER;


@end

OF_ASSUME_NONNULL_END







<
<








|








>
>



28
29
30
31
32
33
34


35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
}

/**
 * @brief The object which is not open, connected or bound.
 */
@property (readonly, nonatomic) id object;



/**
 * @brief Creates a new, autoreleased not open exception.
 *
 * @param object The object which is not open, connected or bound
 * @return A new, autoreleased not open exception
 */
+ (instancetype)exceptionWithObject: (id)object;

+ (instancetype)exception OF_UNAVAILABLE;

/**
 * @brief Initializes an already allocated not open exception.
 *
 * @param object The object which is not open, connected or bound
 * @return An initialized not open exception
 */
- (instancetype)initWithObject: (id)object OF_DESIGNATED_INITIALIZER;

- (instancetype)init OF_UNAVAILABLE;
@end

OF_ASSUME_NONNULL_END