Remove unnecessary change

This was accidentally added, it was a change I made whilst testing.
This commit is contained in:
Ronald
2024-07-17 21:57:35 +01:00
parent f04db7145c
commit c768d0719a

View File

@@ -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
}