Skip to content

Commit

Permalink
fixed a typo in a getter method
Browse files Browse the repository at this point in the history
  • Loading branch information
jestan committed Dec 7, 2011
1 parent 2f5f149 commit f62bb85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public SctpPayload(int streamIdentifier, int protocolIdentifier, ChannelBuffer p
this.payloadBuffer = payloadBuffer;
}

public int getstreamIdentifier() {
public int getStreamIdentifier() {
return streamIdentifier;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ final SendBuffer acquire(Object message) {

private final SendBuffer acquire(SctpPayload message) {
final ChannelBuffer src = message.getPayloadBuffer();
final int streamNo = message.getstreamIdentifier();
final int streamNo = message.getStreamIdentifier();
final int protocolId = message.getProtocolIdentifier();

final int size = src.readableBytes();
Expand Down

0 comments on commit f62bb85

Please sign in to comment.