`/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?
/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#asListproduces 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?