netty / netty-incubator-codec-http3

Experimental HTTP3 codec on top of QUIC
Apache License 2.0
167 stars 35 forks source link

Apply Nullable/NotNullByDefault annotations #289

Closed simonatan closed 5 months ago

simonatan commented 6 months ago

Motivation: Nullable/NotNullByDefault annotations give an idea of what to expect from the API. Plus, they provide a better IDE integration. This PR is based on the work done in netty/netty#12878

Modification: Nullable/NotNullByDefault annotations are applied where necessary.

Result: The change extends the API with nullability expectations. Plus, it provides a better IDE integration.

simonatan commented 5 months ago

@normanmaurer PTAL

normanmaurer commented 5 months ago

@simonatan thanks