Skip to content

Commit 9588809

Browse files
committed
Fix typo
1 parent e5f545b commit 9588809

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Kepler-Server/src/main/java/org/alexdev/kepler/server/netty/streams/NettyRequest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ public byte[] remainingBytes() {
6666
}
6767

6868
public String contents() {
69-
byte[] remiainingBytes = this.remainingBytes();
69+
byte[] remainingBytes = this.remainingBytes();
7070

71-
if (remiainingBytes != null) {
72-
return new String(remiainingBytes, StringUtil.getCharset());
71+
if (remainingBytes != null) {
72+
return new String(remainingBytes, StringUtil.getCharset());
7373
}
7474

7575
return null;

0 commit comments

Comments
 (0)