Skip to content

Commit

Permalink
Suppresed few warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkowz committed Feb 13, 2016
1 parent 05ae91d commit 8516b80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Swifternalization/TranslationsLoader.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ final class TranslationsLoader {
// Count every string or dict occurence.
for (_, value) in element {
if value is String {
strings++
strings += 1
} else if value is Dictionary<String, AnyObject> {
dicts++
dicts += 1
}
}

Expand Down

0 comments on commit 8516b80

Please sign in to comment.