mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-16 12:49:55 +01:00
Add static requireNonNull() method.
This commit is contained in:
@@ -0,0 +1,15 @@
|
|||||||
|
package org.briarproject.bramble.api.nullsafety;
|
||||||
|
|
||||||
|
import javax.annotation.Nullable;
|
||||||
|
|
||||||
|
@NotNullByDefault
|
||||||
|
public class NullSafety {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Stand-in for `Objects.requireNonNull()`.
|
||||||
|
*/
|
||||||
|
public static <T> T requireNonNull(@Nullable T t) {
|
||||||
|
if (t == null) throw new NullPointerException();
|
||||||
|
return t;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user