We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5f545b commit 9588809Copy full SHA for 9588809
Kepler-Server/src/main/java/org/alexdev/kepler/server/netty/streams/NettyRequest.java
@@ -66,10 +66,10 @@ public byte[] remainingBytes() {
66
}
67
68
public String contents() {
69
- byte[] remiainingBytes = this.remainingBytes();
+ byte[] remainingBytes = this.remainingBytes();
70
71
- if (remiainingBytes != null) {
72
- return new String(remiainingBytes, StringUtil.getCharset());
+ if (remainingBytes != null) {
+ return new String(remainingBytes, StringUtil.getCharset());
73
74
75
return null;
0 commit comments