Feat/oss parser no post (#16464)

### Summary

Remove dead code
This commit is contained in:
Jack
2026-07-02 09:46:33 +08:00
committed by GitHub
parent 133b1e15fd
commit 5bc4753d1e
51 changed files with 1381 additions and 2680 deletions
@@ -1,6 +1,6 @@
//go:build cgo && manual
package parser
package pdf
import (
"context"
@@ -31,8 +31,8 @@ func TestParse_BatchEquivalence(t *testing.T) {
defer eng.Close()
cfg := pdf.DefaultParserConfig()
cfg.BatchSize = batchSize
p := NewParser(cfg, &MockDocAnalyzer{Healthy: true})
result, err := p.Parse(context.Background(), eng)
p := NewParser(cfg)
result, err := p.ParseRaw(context.Background(), eng, mockDLA)
if err != nil {
t.Fatal(err)
}