Cube  Diff

Differences From Artifact [fe2a009013]:

To Artifact [99fa37b5c7]:


1
2
3
4
5
6


7
8
9
10


11
12
13
14
15


16
17
18
19
20
21
22
1
2
3
4


5
6
7
8


9
10
11
12
13


14
15
16
17
18
19
20
21
22




-
-
+
+


-
-
+
+



-
-
+
+







#import "Alias.h"

@implementation Alias
+ (instancetype)aliasWithName: (OFString *)name
                       action: (OFString *)action
                    persisted: (bool)persisted;
		       action: (OFString *)action
		    persisted: (bool)persisted;
{
	return [[self alloc] initWithName: name
	                           action: action
	                        persisted: persisted];
				   action: action
				persisted: persisted];
}

- (instancetype)initWithName: (OFString *)name
                      action: (OFString *)action
                   persisted: (bool)persisted
		      action: (OFString *)action
		   persisted: (bool)persisted
{
	self = [super initWithName: name];

	_action = [action copy];
	_persisted = persisted;

	return self;