You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Javadoc for ApnsPayloadBuilder.setLocalizedAlertMessage says:
@param alertArguments arguments to populate placeholders in the localized alert string; may be {@code null}
But method will fail with NPE if null is passed as alertArgument in this row this.localizedAlertArguments = alertArguments.length > 0 ? alertArguments : null;
Similar NPE will happen in other methods receiving vararg argument
The text was updated successfully, but these errors were encountered:
Javadoc for ApnsPayloadBuilder.setLocalizedAlertMessage says:
But method will fail with NPE if null is passed as alertArgument in this row
this.localizedAlertArguments = alertArguments.length > 0 ? alertArguments : null;
Similar NPE will happen in other methods receiving vararg argument
The text was updated successfully, but these errors were encountered: