This type isn't used anywhere and doesn't conform to go's ReadFrom/WriteTo interfaces. Unfortunately, go vet doesn't have any way to say "please ignore this error", so our options were to:
Fix it.
Delete it.
Given that it isn't used and hasn't been for years, I opted for the latter. We can always re-implement it later if we need it (and bring it up to do date with idiomatic go).
This type isn't used anywhere and doesn't conform to go's ReadFrom/WriteTo interfaces. Unfortunately,
go vet
doesn't have any way to say "please ignore this error", so our options were to:Given that it isn't used and hasn't been for years, I opted for the latter. We can always re-implement it later if we need it (and bring it up to do date with idiomatic go).