Fix Javadoc warning emitted by Gradle build (#798)

This commit is contained in:
translatenix
2024-11-11 11:37:14 -08:00
committed by GitHub
parent ff60f61cbb
commit a22a8a8127

View File

@@ -133,16 +133,15 @@ public abstract class Member {
/**
* Tells if this member is declared inside the iterable of a for-generator, or an object spread.
* <p>
* This is {@code true} for {@code new {}} within:
*
* <pre>
* {@code
* <p>This is {@code true} for {@code new {}} within:
*
* <pre>{@code
* for (x in new Listing { new {} }) {
* ^^^^^^
* // etc
* }
* </pre>
* }</pre>
*/
public boolean isInIterable() {
return VmModifier.isInIterable(modifiers);