Skip to content

Commit

Permalink
7.2.18
Browse files Browse the repository at this point in the history
Possible fix for File-Manager "Cannot parse null string" issue
  • Loading branch information
Osiris-Team committed May 7, 2023
1 parent f96ce9a commit 6f87def
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

<groupId>com.osiris.autoplug.client</groupId>
<artifactId>autoplug-client</artifactId>
<version>7.2.17</version>
<version>7.2.18</version>
<packaging>jar</packaging>

<name>AutoPlug-Client</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,10 @@ public synchronized void close() throws Exception {

private void _close(Thread thread, InputStream in, OutputStream out, Socket socket) throws Exception {
AL.debug(this.getClass(), "_close()");
if (thread != null) thread.interrupt();
if (in != null) in.close();
if (out != null) out.close();
if (socket != null) socket.close();
if (thread != null) thread.interrupt();
}

@Override
Expand Down

0 comments on commit 6f87def

Please sign in to comment.