Skip to content

Commit

Permalink
Merge branch 'master' of github.com:beanit/openiec61850
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanfeuerhahn committed Jun 23, 2023
2 parents 0d652ed + 0508da4 commit c5acb25
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions src/main/java/com/beanit/iec61850bean/ClientAssociation.java
Original file line number Diff line number Diff line change
Expand Up @@ -2110,15 +2110,17 @@ private void close(IOException e) {
closed = true;
acseAssociation.close();
lastIOException = e;
Thread t1 =
new Thread(
new Runnable() {
@Override
public void run() {
reportListener.associationClosed(lastIOException);
}
});
t1.start();
if (reportListener != null) {
Thread t1 =
new Thread(
new Runnable() {
@Override
public void run() {
reportListener.associationClosed(lastIOException);
}
});
t1.start();
}

MMSpdu mmsPdu = new MMSpdu();
mmsPdu.setConfirmedRequestPDU(new ConfirmedRequestPDU());
Expand Down

0 comments on commit c5acb25

Please sign in to comment.