#94 got rid of unnecessary second copy of existing twine strings file when writing a strings file
This commit is contained in:
parent
d1258985fc
commit
4f6f65fdf8
1 changed files with 1 additions and 8 deletions
|
@ -191,13 +191,6 @@ module Twine
|
|||
def write(path)
|
||||
dev_lang = @language_codes[0]
|
||||
|
||||
existing_file = begin
|
||||
file = StringsFile.new
|
||||
file.read(path)
|
||||
file
|
||||
rescue
|
||||
end
|
||||
|
||||
File.open(path, 'w:UTF-8') do |f|
|
||||
@sections.each do |section|
|
||||
if f.pos > 0
|
||||
|
@ -207,7 +200,7 @@ module Twine
|
|||
f.puts "[[#{section.name}]]"
|
||||
|
||||
section.rows.each do |row|
|
||||
reference = existing_file.strings_map[row.reference_key] if existing_file and row.reference_key
|
||||
reference = @strings_map[row.reference_key] if row.reference_key
|
||||
|
||||
f.puts "\t[#{row.key}]"
|
||||
|
||||
|
|
Reference in a new issue