Skip to content

Commit

Permalink
Added empty public ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Sep 7, 2012
1 parent e92420a commit db1ad4e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/org/jgroups/protocols/FORWARD_TO_COORD.java
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,9 @@ protected static class ForwardHeader extends Header {
protected static final byte ACK = 2; // sent back by the coord
protected static final byte NOT_COORD = 3; // sent by the coord when it is *not* the coord

public ForwardHeader() {
}

public ForwardHeader(byte type, long id) {
this.type=type;
this.id=id;
Expand Down

0 comments on commit db1ad4e

Please sign in to comment.