Commit 01267b80 authored by Carlos Galindo's avatar Carlos Galindo
Browse files

jinterface 1.12.1

parent fbbedaa9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -7,6 +7,7 @@ Available versions:

| JInterface | Erlang versions supported |
|------------|---------------------------|
| 1.12.1     | >=24.1, <24.3             |
| 1.12       | >=24, <24.1               |
| 1.11.1     | >=23.3, <23.3.4.12        |
| 1.11       | >=23, <23.3               |
+6 −1
Original line number Diff line number Diff line
/*
 * %CopyrightBegin%
 *
 * Copyright Ericsson AB 2000-2017. All Rights Reserved.
 * Copyright Ericsson AB 2000-2021. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
@@ -565,6 +565,11 @@ public abstract class AbstractConnection extends Thread {
                    // received tick? send tock!
                    if (len == 0) {
                        synchronized (this) {
                            if (socket == null) {
                                // protect from a potential thin race when the
                                // connection to the remote node is closed
                                throw new IOException("socket was closed");
                            }
                            OutputStream out = socket.getOutputStream();
                            out.write(tock);
                            out.flush();
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
	<groupId>program-slicing</groupId>
	<artifactId>erlang-jinterface</artifactId>
	<packaging>jar</packaging>
	<version>1.12</version>
	<version>1.12.1</version>
	<name>jinterface</name>
	<description>
		Jinterface Java package contains java classes, which help you integrate programs written in Java with Erlang.