Skip to content

Commit 4a3cf6b

Browse files
committed
#1 cleaned up template
1 parent 68223df commit 4a3cf6b

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

SwiftyJSONAccelerator/Base Files/BaseTemplate.txt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ public {OBJECT_KIND} {OBJECT_NAME}: NSObject, NSCoding {
1818
// MARK: Initalizers
1919
/**
2020
Initates the class based on the object
21-
2221
- parameter object: The object of either Dictionary or Array kind that was passed.
23-
2422
- returns: An initalized instance of the class.
2523
*/
2624
convenience public init(object: AnyObject) {
@@ -29,9 +27,7 @@ public {OBJECT_KIND} {OBJECT_NAME}: NSObject, NSCoding {
2927

3028
/**
3129
Initates the class based on the JSON that was passed.
32-
3330
- parameter json: JSON object from SwiftyJSON.
34-
3531
- returns: An initalized instance of the class.
3632
*/
3733
public init(json: JSON) {
@@ -40,7 +36,6 @@ public {OBJECT_KIND} {OBJECT_NAME}: NSObject, NSCoding {
4036

4137
/**
4238
Generates description of the object in the form of a NSDictionary.
43-
4439
- returns: A Key value pair containing all valid values in the object.
4540
*/
4641
public func dictionaryRepresentation() -> [String : AnyObject ] {
@@ -60,4 +55,4 @@ public {OBJECT_KIND} {OBJECT_NAME}: NSObject, NSCoding {
6055
{ENCODERS}
6156
}
6257

63-
}
58+
}

0 commit comments

Comments
 (0)