JavaChat / OakBot

A Java-based chat bot for Stackoverflow Chat
45 stars 32 forks source link

Some javadoc links are broken #46

Open mvarendorff opened 5 years ago

mvarendorff commented 5 years ago

/javadoc PrintStream#printf (1) produces: http://docs.oracle.com/javase/8/docs/api/java/io/PrintStream.html#printf-java.lang.String-java.lang.Object:A- while the link in the Java Documentation is https://docs.oracle.com/javase/8/docs/api/java/io/PrintStream.html#printf-java.lang.String-java.lang.Object...-

This seems to be because of varargs vs array but weirdly enough /javadoc Arrays#asList produces https://docs.oracle.com/javase/8/docs/api/java/util/Arrays.html#asList-java.lang.Object:A- which correctly links.

Maybe the difference here is generic varargs to "classed" varargs?