Files
openide/java/java-impl/resources/intentionDescriptions/ObjectsRequireNonNullIntention/description.html
Leonid Shalupov 40795fe787 IJI-2422: community/java: move resources under resources root
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
2025-02-05 04:43:28 +00:00

7 lines
342 B
HTML

<html>
<body>
Converts a variable read access where the variable is first checked for <code>null</code> using either a <code>@NonNull</code> annotation,
an <code>if</code> statement which throws an exception, or an <code>assert</code> statement to an expression using a call to
<code>java.util.Objects.requireNonNull()</code>.
</body>
</html>