Polishing.

Fix Javadoc references.

See #2915
Original pull request: #2916
This commit is contained in:
Mark Paluch
2023-08-28 11:38:48 +02:00
parent df543cd50e
commit 8c342a56e8

View File

@@ -165,7 +165,7 @@ abstract class BytecodeUtil {
/**
* Checks whether the class is accessible by inspecting modifiers (i.e. whether the class is {@code private}).
*
* @param type must not be {@literal null}.
* @param modifiers modifiers to check.
* @return {@literal true} if the {@code modifiers} do not indicate the private flag.
* @see Modifier#isPrivate(int)
*/
@@ -177,7 +177,7 @@ abstract class BytecodeUtil {
* Checks whether the modifiers express {@literal default} (not
* {@literal private}/{@literal protected}/{@literal public}).
*
* @param type must not be {@literal null}.
* @param modifiers modifiers to check.
* @return {@literal true} if the {@code modifiers} indicate {@literal default}.
* @see Modifier#isPrivate(int)
*/