Revert "Consistently handle “A11y” key"

This reverts commit d96f189980.
This commit is contained in:
Jed Fox 2022-11-09 07:35:06 -05:00
parent 24c426f7f3
commit fcf38a15d6
No known key found for this signature in database
GPG Key ID: 0B61D18EA54B47E1
1 changed files with 1 additions and 6 deletions

View File

@ -43,12 +43,7 @@ extension Parser {
.map {
switch keyStyle {
case .infoPlist: return $0
case .swiftgen:
if $0 == "a11y" {
return "A11y"
} else {
return $0.capitalized
}
case .swiftgen: return $0.capitalized
}
}
.joined()