Skip to content

Commit

Permalink
Rebase 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tilmann Zäschke committed Nov 19, 2024
1 parent ab59810 commit fe757ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/scion/jpan/ScmpResponder.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ public Predicate<Scmp.EchoMessage> setScmpEchoListener(Predicate<Scmp.EchoMessag
}

@Override
public void close() throws IOException {
protected void implCloseSelectableChannel() throws IOException {
selector.close();
super.close();
super.implCloseSelectableChannel();
}
}

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/scion/jpan/ScmpSenderAsync.java
Original file line number Diff line number Diff line change
Expand Up @@ -348,9 +348,9 @@ private void handleIncomingScmp(ByteBuffer buffer, ResponsePath receivePath, int
}

@Override
public void close() throws IOException {
protected void implCloseSelectableChannel() throws IOException {
selector.close();
super.close();
super.implCloseSelectableChannel();
}
}

Expand Down

0 comments on commit fe757ef

Please sign in to comment.