remove commented code
This commit is contained in:
parent
944f584f7e
commit
b3a2511b96
@ -27,9 +27,9 @@ public class AlertButtonModel: Codable {
|
||||
required public init(from decoder: Decoder) throws {
|
||||
let typeContainer = try decoder.container(keyedBy: CodingKeys.self)
|
||||
title = try typeContainer.decode(String.self, forKey: .title)
|
||||
// if let style = try? typeContainer.decodeIfPresent(UIAlertAction.Style.self, forKey: .style) {
|
||||
// self.style = style
|
||||
// }
|
||||
if let style = try? typeContainer.decodeIfPresent(UIAlertAction.Style.self, forKey: .style) {
|
||||
self.style = style
|
||||
}
|
||||
action = try typeContainer.decodeModel(codingKey: .action)
|
||||
}
|
||||
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
#import <Foundation/Foundation.h>
|
||||
#import "MVMCoreRequestParameters.h"
|
||||
|
||||
#define ENABLE_HARD_CODED_RESPONSE 0 && DEBUG
|
||||
#define ENABLE_HARD_CODED_RESPONSE 1 && DEBUG
|
||||
|
||||
#if ENABLE_HARD_CODED_RESPONSE
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user