[#5013] Fix typo in DefaultStompFrame.toString() method.
Motivation: DefaultStompFrame.toString() implementations returned a String that contained DefaultFullStompFrame. Modifications: Replace DefaultFullStompFrame with DefaultStompFrame. Result: Less confusing and more correct return value of toString()
This commit is contained in:
parent
ee4d2c4b74
commit
e7b7b77efc
@ -94,7 +94,7 @@ public class DefaultStompFrame extends DefaultStompHeadersSubframe implements St
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "DefaultFullStompFrame{" +
|
return "DefaultStompFrame{" +
|
||||||
"command=" + command +
|
"command=" + command +
|
||||||
", headers=" + headers +
|
", headers=" + headers +
|
||||||
", content=" + content.toString(CharsetUtil.UTF_8) +
|
", content=" + content.toString(CharsetUtil.UTF_8) +
|
||||||
|
Loading…
Reference in New Issue
Block a user