From dd1b3eac1e15700e86e8bbf89a1307a5573edb0d 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 ea08bb0924..b72b9879ea 100644 --- a/ompi/mpi/java/java/Comm.java +++ b/ompi/mpi/java/java/Comm.java @@ -653,7 +653,7 @@ public class Comm implements Freeable, Cloneable /** * 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