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
原代码:
public Builder addPayloadAps(Aps aps) { this.aps = aps; return this; } public Builder addPayload(Aps aps) { this.aps = aps; return this; }
两个方法内容相同。ApnsConfig.Builder中缺乏setAps()方法,addPayloadAps()和addPayload()方法容易让人觉得和参数payloadAps和payload相关,容易有误解。建议改为:
public Builder setAps(Aps aps) { this.aps = aps; return this; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
原代码:
两个方法内容相同。ApnsConfig.Builder中缺乏setAps()方法,addPayloadAps()和addPayload()方法容易让人觉得和参数payloadAps和payload相关,容易有误解。建议改为:
The text was updated successfully, but these errors were encountered: