OSDN Git Service

関数名を変更
[kcd/KCD.git] / KCD / MasterFurnitureMapper.swift
index 3ec58a3..98c7e6e 100644 (file)
@@ -8,9 +8,8 @@
 
 import Cocoa
 
-class MasterFurnitureMapper: JSONMapper {
-    typealias ObjectType = MasterFurniture
-
+final class MasterFurnitureMapper: JSONMapper {
+    
     let apiResponse: APIResponse
     let configuration = MappingConfiguration(entity: MasterFurniture.entity,
                                              dataKeys: ["api_data", "api_mst_furniture"],
@@ -18,6 +17,7 @@ class MasterFurnitureMapper: JSONMapper {
                                              ignoreKeys: ["api_season"])
     
     required init(_ apiResponse: APIResponse) {
+        
         self.apiResponse = apiResponse
     }
 }