From 67c6b45e09c8f357271e7c9f3d59cde455f04cd6 Mon Sep 17 00:00:00 2001 From: Carlos Galindo Date: Thu, 7 Dec 2023 14:39:28 +0000 Subject: [PATCH] jinterface 1.10.1 --- README.md | 1 + java_src/com/ericsson/otp/erlang/OtpOutputStream.java | 8 ++++---- pom.xml | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 015e66e..f2a651f 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ Available versions: | JInterface | Erlang versions supported | |------------|---------------------------| +| 1.10.1 | >=22.1, <23 | | 1.10 | >=22, <22.1 | | 1.9.1 | >=21.1, <22 | diff --git a/java_src/com/ericsson/otp/erlang/OtpOutputStream.java b/java_src/com/ericsson/otp/erlang/OtpOutputStream.java index ad5784d..5e777c1 100644 --- a/java_src/com/ericsson/otp/erlang/OtpOutputStream.java +++ b/java_src/com/ericsson/otp/erlang/OtpOutputStream.java @@ -106,9 +106,9 @@ public class OtpOutputStream extends ByteArrayOutputStream { } /** - * Trims the capacity of this {@code OtpOutputStream} instance to be the + * Trims the capacity of this OtpOutputStream instance to be the * buffer's current size. An application can use this operation to minimize - * the storage of an {@code OtpOutputStream} instance. + * the storage of an OtpOutputStream instance. */ public void trimToSize() { resize(super.count); @@ -125,7 +125,7 @@ public class OtpOutputStream extends ByteArrayOutputStream { } /** - * Increases the capacity of this {@code OtpOutputStream} instance, if + * Increases the capacity of this OtpOutputStream instance, if * necessary, to ensure that it can hold at least the number of elements * specified by the minimum capacity argument. * @@ -939,7 +939,7 @@ public class OtpOutputStream extends ByteArrayOutputStream { * @param o * the Erlang term to write. * @param level - * the compression level ({@code 0..9}) + * the compression level (0..9) */ public void write_compressed(final OtpErlangObject o, final int level) { @SuppressWarnings("resource") diff --git a/pom.xml b/pom.xml index f12a619..2cc4217 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ program-slicing erlang-jinterface jar - 1.10 + 1.10.1 jinterface Jinterface Java package contains java classes, which help you integrate programs written in Java with Erlang. -- GitLab