fixed a typo in a getter method

This commit is contained in:
Jestan Nirojan 2011-12-08 00:14:04 +05:30
parent 2f5f149b52
commit f62bb850ec
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ public final class SctpPayload {
this.payloadBuffer = payloadBuffer;
}
public int getstreamIdentifier() {
public int getStreamIdentifier() {
return streamIdentifier;
}

View File

@ -54,7 +54,7 @@ final class SctpSendBufferPool {
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();