Making construction of TextFrame start with FIN=true

This commit is contained in:
Joakim Erdfelt 2012-06-29 11:29:03 -07:00
parent cd3c47ef0e
commit 042dc41998
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ public class TextFrame extends DataFrame
public TextFrame(String message)
{
this();
setFin(true); // assume a final message with this constructor
setPayload(message);
}