Skip to content

Commit 98d5812

Browse files
mint-runsmint-runs
mint-runs
authored and
mint-runs
committed
update ServerSocketAcceptingThread.java
update version update gradle mini fix to remove socket exceptions
1 parent 170ec2d commit 98d5812

File tree

8 files changed

+1
-4
lines changed

8 files changed

+1
-4
lines changed
Binary file not shown.
Binary file not shown.

.gradle/6.7/fileHashes/fileHashes.bin

50 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
18 Bytes
Binary file not shown.

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
apply plugin: 'maven'
77

88
group 'de.javasocketapi'
9-
version 'v1.7.0'
9+
version 'v1.7.1'
1010

1111
tasks.withType(JavaCompile) {
1212
options.encoding = 'UTF-8'

src/main/java/de/javasocketapi/core/Server.java

-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ public void connect() throws IOException {
3535
public void disconnect() throws IOException {
3636
//disconnect all clients
3737
this.disconnectAllClients();
38-
//interrupt accepting clients
39-
this.serverSocketAcceptingThread.interrupt();
40-
4138
//check if serverSocket is closed
4239
if (!this.serverSocket.isClosed()) {
4340
//disconnect serverSocket

0 commit comments

Comments
 (0)