Skip to content

Commit

Permalink
ns
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Sep 14, 2023
1 parent 0e0ae95 commit 45a32ac
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/org/jgroups/stack/ProtocolStack.java
Original file line number Diff line number Diff line change
Expand Up @@ -946,8 +946,7 @@ public Object down(Event evt) {
}

public Object down(Message msg) {
if(top_prot != null) return top_prot.down(msg);
return null;
return top_prot != null? top_prot.down(msg) : null;
}


Expand Down

0 comments on commit 45a32ac

Please sign in to comment.