We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7198441 commit 75fad74Copy full SHA for 75fad74
Sources/POEditorParser/Lib/LiteralsParser.swift
@@ -178,22 +178,6 @@ public protocol SwiftCodeGenerator {
178
func generateCode(translations: [Translation])
179
}
180
181
-class StringCodeGenerator: SwiftCodeGenerator {
182
-
183
- var generatedResult = ""
184
185
- func generateCode(translations: [Translation]) {
186
- generatedResult += SwiftCodeGeneratorConstants.rootObjectHeader()
187
188
- for t in translations {
189
- generatedResult += SwiftCodeGeneratorConstants.methodOrVariableHeader
190
- generatedResult += t.swiftCode
191
- }
192
193
- generatedResult += SwiftCodeGeneratorConstants.rootObjectFooter
194
195
-}
196
197
public class FileCodeGenerator: SwiftCodeGenerator {
198
199
let fileHandle: FileHandle
0 commit comments