Skip to content

Commit

Permalink
Not optional
Browse files Browse the repository at this point in the history
  • Loading branch information
Vermeer, Edwin authored and Vermeer, Edwin committed May 17, 2017
1 parent 10483c1 commit 8eb5651
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion EVReflection.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "EVReflection"
s.version = "4.13.0"
s.version = "4.14.0"
s.summary = "Reflection based (dictionary, JSON or XML) object mapping (including extensions for Alamofire and Moya with RxSwift or ReactiveSwift)"

s.description = <<-EOS
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/EVReflection.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1142,7 +1142,7 @@ final public class EVReflection {
*/
internal static func PascalCaseToCamelCase(_ input: String) -> String {
if input.characters.count > 1 {
return String(describing: input.characters.first).lowercased() + input.substring(from: input.characters.index(after: input.startIndex))
return String(describing: input.characters.first!).lowercased() + input.substring(from: input.characters.index(after: input.startIndex))
}
return input.lowercased()
}
Expand Down

0 comments on commit 8eb5651

Please sign in to comment.