netty5/buffer/src
Boris Unckel d5fabe78a7
Utilize i.n.u.internal.ObjectUtil to assert Preconditions (buffer) (#11170) (#11182)
Motivation:

NullChecks resulting in a NullPointerException or IllegalArgumentException, numeric ranges (>0, >=0) checks, not empty strings/arrays checks must never be anonymous but with the parameter or variable name which is checked. They must be specific and should not be done with an "OR-Logic" (if a == null || b == null) throw new NullPointerEx.

Modifications:

* import static relevant checks
* Replace manual checks with ObjectUtil methods

Result:

All checks needed are done with ObjectUtil, some exception texts are improved.

Fixes #11170
2021-04-22 14:20:44 +02:00
..
main Utilize i.n.u.internal.ObjectUtil to assert Preconditions (buffer) (#11170) (#11182) 2021-04-22 14:20:44 +02:00
test/java/io/netty/buffer Fix alignment handling for pooled direct buffers (#11106) 2021-03-23 17:07:06 +01:00