-
Notifications
You must be signed in to change notification settings - Fork 946
New issue
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
Fix/pull header #4119
Fix/pull header #4119
Conversation
|
Hi, @siguangli. Thanks for your PR! 👏 🏷️ You can leave a comment in this PR with |
@Override | ||
public int putVarint(long l) { | ||
if (count + 10 > value.length) { | ||
enlargeBuffer(count + 10); | ||
} | ||
|
||
LogUtils.d("CallFunction", "putVarint l " + l + ", count " + count); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid building many strings in non-Debug status to prevent performance impact
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
已添加判断,只在debug版本才会调用
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
Before submitting a new pull request, please make sure: