fix: 删除未使用的函数修复golangci-lint错误

This commit is contained in:
2026-04-19 07:44:06 +08:00
parent 1f7c491048
commit b7929d6ae7
4 changed files with 0 additions and 23 deletions
-8
View File
@@ -124,14 +124,6 @@ func (r *TermHandler) collectOutput(output string) {
}
}
func (r *TermHandler) getAndClearOutput() string {
r.outputMutex.Lock()
defer r.outputMutex.Unlock()
output := r.outputBuf.String()
r.outputBuf.Reset()
return output
}
func (r *TermHandler) saveLastCommandOutput() {
r.outputMutex.Lock()
defer r.outputMutex.Unlock()