Skip to content

Commit

Permalink
Add missing @nullable annotation (java-native-access#696)
Browse files Browse the repository at this point in the history
Motivation:

We did miss a @nullable annotation

Modifications:

Add missing annotation

Result:

Cleanup
  • Loading branch information
normanmaurer authored Mar 13, 2024
1 parent 624d46e commit 7ad7a82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ final class QuicheConfig {
@Nullable Long ackDelayExponent, @Nullable Long maxAckDelay, @Nullable Boolean disableActiveMigration, @Nullable Boolean enableHystart,
@Nullable QuicCongestionControlAlgorithm congestionControlAlgorithm,
@Nullable Integer recvQueueLen, @Nullable Integer sendQueueLen,
@Nullable Long activeConnectionIdLimit, byte[] statelessResetToken) {
@Nullable Long activeConnectionIdLimit, byte @Nullable [] statelessResetToken) {
long config = Quiche.quiche_config_new(version);
try {
if (grease != null) {
Expand Down

0 comments on commit 7ad7a82

Please sign in to comment.