From a1e7da4b3e0ea0da87d8ec4d1fb960c2592b624e Mon Sep 17 00:00:00 2001 From: KAWASHIMA Takahiro Date: Tue, 9 Oct 2018 17:24:40 +0900 Subject: [PATCH] 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 (cherry picked from commit b491b454dc304a72c03970326880fbd01641a3d3) --- ompi/mpi/java/java/Comm.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mpi/java/java/Comm.java b/ompi/mpi/java/java/Comm.java index 938dcce2dbf..d93c777890f 100644 --- a/ompi/mpi/java/java/Comm.java +++ b/ompi/mpi/java/java/Comm.java @@ -652,7 +652,7 @@ private native long iSend( /** * Start a buffered mode, nonblocking send. - *

Java binding of the MPI operation MPI_IBSEND. + *

Java binding of the MPI operation {@code MPI_IBSEND}. * @param buf send buffer * @param count number of items to send * @param type datatype of each item in send buffer