[#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:
Norman Maurer 2016-03-22 12:46:01 +01:00
parent ee4d2c4b74
commit e7b7b77efc

View File

@ -94,7 +94,7 @@ public class DefaultStompFrame extends DefaultStompHeadersSubframe implements St
@Override
public String toString() {
return "DefaultFullStompFrame{" +
return "DefaultStompFrame{" +
"command=" + command +
", headers=" + headers +
", content=" + content.toString(CharsetUtil.UTF_8) +