eclipse-jdt / eclipse.jdt.ui

Eclipse Public License 2.0
35 stars 86 forks source link

Javadoc: Missing links with @see to method with varargs #1438

Open jukzi opened 2 months ago

jukzi commented 2 months ago

for example the constructor of java.lang.Class.getConstructor(Class<?>...) contains a @see #getDeclaredConstructor(Class<?>[]) but does not show a link to getDeclaredConstructor(Class<?>[]) or the other way around as used in JDK:

image image

jdt only can find links to explicit vargargs reference - but format them wrong (elipses '...' missing):

image