Upgrade version of RxSwift, RxCocoa, Alamofire.
This commit is contained in:
10
Pods/RxSwift/Platform/DataStructures/Bag.swift
generated
10
Pods/RxSwift/Platform/DataStructures/Bag.swift
generated
@ -80,15 +80,11 @@ struct Bag<T> : CustomDebugStringConvertible {
|
||||
}
|
||||
|
||||
if _pairs.count < arrayDictionaryMaxSize {
|
||||
_pairs.append(key: key, value: element)
|
||||
_pairs.append((key: key, value: element))
|
||||
return key
|
||||
}
|
||||
|
||||
if _dictionary == nil {
|
||||
_dictionary = [:]
|
||||
}
|
||||
|
||||
_dictionary![key] = element
|
||||
|
||||
_dictionary = [key: element]
|
||||
|
||||
return key
|
||||
}
|
||||
|
Reference in New Issue
Block a user