helper: remove unreachable check

Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
Ophestra Umiker 2024-09-29 14:48:38 +09:00
parent d530a9e9f9
commit 61ba841c88
Signed by: cat
SSH Key Fingerprint: SHA256:gQ67O0enBZ7UdZypgtspB2FDM1g3GVw8nX0XSdcFw8Q
1 changed files with 0 additions and 4 deletions

View File

@ -44,10 +44,6 @@ func (a argsFD) WriteTo(w io.Writer) (int64, error) {
}
func (a argsFD) String() string {
if a == nil {
return "(invalid helper args)"
}
return strings.Join(a, " ")
}