mirror of
https://github.com/apple/pkl.git
synced 2026-04-25 09:48:41 +02:00
Fix Javadoc warning emitted by Gradle build (#798)
This commit is contained in:
@@ -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.
|
* 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>
|
* <p>This is {@code true} for {@code new {}} within:
|
||||||
* {@code
|
*
|
||||||
|
* <pre>{@code
|
||||||
* for (x in new Listing { new {} }) {
|
* for (x in new Listing { new {} }) {
|
||||||
* ^^^^^^
|
* ^^^^^^
|
||||||
* // etc
|
* // etc
|
||||||
* }
|
* }
|
||||||
* </pre>
|
* }</pre>
|
||||||
*/
|
*/
|
||||||
public boolean isInIterable() {
|
public boolean isInIterable() {
|
||||||
return VmModifier.isInIterable(modifiers);
|
return VmModifier.isInIterable(modifiers);
|
||||||
|
|||||||
Reference in New Issue
Block a user