ObjFW  Diff

Differences From Artifact [5ab0a3a71f]:

To Artifact [f7e8e6c2e5]:


104
105
106
107
108
109
110
111
112


113
114
115


116
117
118
119
120
121
122
104
105
106
107
108
109
110


111
112
113


114
115
116
117
118
119
120
121
122







-
-
+
+

-
-
+
+







}

- initWithArray: (OFArray*)array
{
	return (id)[[OFMutableArray_adjacent alloc] initWithArray: array];
}

- initWithCArray: (id*)objects
	  length: (size_t)length
- initWithObjects: (id*)objects
	    count: (size_t)count
{
	return (id)[[OFMutableArray_adjacent alloc] initWithCArray: objects
							    length: length];
	return (id)[[OFMutableArray_adjacent alloc] initWithObjects: objects
							      count: count];
}

- initWithSerialization: (OFXMLElement*)element
{
	return (id)[[OFMutableArray_adjacent alloc]
	    initWithSerialization: element];
}