Java: improve Javadoc

GitOrigin-RevId: 28f104e4143e254d64ec9a6d2fa4f352adcc8a04
This commit is contained in:
Bas Leijdekkers
2023-12-15 12:28:03 +00:00
committed by intellij-monorepo-bot
parent 68880a5c91
commit bef1501c2d
@@ -17,7 +17,8 @@ public final class JavaPsiConstructorUtil {
private static final @NotNull TokenSet CONSTRUCTOR_CALL_TOKENS = TokenSet.create(JavaTokenType.SUPER_KEYWORD, JavaTokenType.THIS_KEYWORD);
/**
* Finds call to another constructor within this constructor (either chained or super)
* Finds an explicit call to another constructor within this constructor (either chained or super).
* If there are multiple explicit constructor calls (which is incompilable), the first one is returned.
* @param constructor constructor to search in
* @return found this/super constructor method call or null if not found or supplied method is null or not a constructor
*/