We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The implementation of JSONWriter.writeNameValue is broken. It is missing a call to writeColon between the writeName and writeAny.
JSONWriter.writeNameValue
writeColon
writeName
writeAny
writeNameValue("foo", "bar")
JSONWriter
"foo""bar"
"foo": "bar"
N/A
The text was updated successfully, but these errors were encountered:
Fix issue alibaba#3224
8c9434f
No branches or pull requests
问题描述
The implementation of
JSONWriter.writeNameValue
is broken. It is missing a call towriteColon
between thewriteName
andwriteAny
.环境信息
重现步骤
writeNameValue("foo", "bar")
on aJSONWriter
期待的正确结果
相关日志输出
N/A
附加信息
N/A
The text was updated successfully, but these errors were encountered: