Revert "Test"

This reverts commit 1650775133.
This commit is contained in:
Tristan B. Velloza Kildaire 2023-11-09 21:28:07 +02:00
parent 3d352cab6e
commit 38b86c43c2
2 changed files with 3 additions and 4 deletions

View File

@ -54,10 +54,6 @@ public abstract class Command
*/
public final byte[] getEncoded()
{
// Force repack of the object
repack();
// Return the data
return data;
}

View File

@ -20,6 +20,9 @@ public final class NopMessage : Command
public void setTestField(string testField)
{
this.testField = testField;
// Ensure re-encoded
repack();
}
public override string toString()