Skip to content

Commit b491b45

Browse files
committed
java: Fix javadoc build failure with OpenJDK 11
OpenJDK 11 changed the default javadoc output HTML version to HTML 5 from HTML 4.01. It causes an error on building Open MPI configured with `--enable-mpi-java` (default: disable). This fix is compatible with older OpenJDK. I don't know whether this problem exists with other vender's JDKs. But this fix should be compatible with other JDKs because the new syntax is used in other places in the same file. Thanks to Siegmar Gross for the bug report. Signed-off-by: KAWASHIMA Takahiro <t-kawashima@jp.fujitsu.com>
1 parent 0bce306 commit b491b45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mpi/java/java/Comm.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ private native long iSend(
653653

654654
/**
655655
* Start a buffered mode, nonblocking send.
656-
* <p>Java binding of the MPI operation <tt>MPI_IBSEND</tt>.
656+
* <p>Java binding of the MPI operation {@code MPI_IBSEND}.
657657
* @param buf send buffer
658658
* @param count number of items to send
659659
* @param type datatype of each item in send buffer

0 commit comments

Comments
 (0)