mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-14 23:33:15 +00:00
Remove unnecessary change
This was accidentally added, it was a change I made whilst testing.
This commit is contained in:
@@ -113,10 +113,7 @@ load_map_from_string :: proc(src: string, allocator: runtime.Allocator, options
|
||||
new_key = strings.to_lower(key) or_return
|
||||
delete(old_key) or_return
|
||||
}
|
||||
pairs[new_key], err = unquote(value)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
pairs[new_key], err = unquote(value) or_return
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user