ObjFW  Diff

Differences From Artifact [020bd4039a]:

To Artifact [206814d076]:


44
45
46
47
48
49
50
51
52

53
54
55
56
57
58
59
- (instancetype)initWithApplicationName: (OFString *)applicationName
{
	self = [super init];

	@try {
		_applicationName = [applicationName copy];
	} @catch (id e) {
		@throw e;
		[self release];

	}

	return self;
}

- (void)dealloc
{







<

>







44
45
46
47
48
49
50

51
52
53
54
55
56
57
58
59
- (instancetype)initWithApplicationName: (OFString *)applicationName
{
	self = [super init];

	@try {
		_applicationName = [applicationName copy];
	} @catch (id e) {

		[self release];
		@throw e;
	}

	return self;
}

- (void)dealloc
{