fix #2865 Refactor Ingester to enhance testability by adding getIngestFactory method.

This commit is contained in:
Shinsuke Sugaya 2024-12-29 22:05:18 +09:00
parent 4726b59f04
commit 541319b7ca

View file

@ -36,7 +36,11 @@ public abstract class Ingester {
}
public void register() {
ComponentUtil.getIngestFactory().add(this);
getIngestFactory().add(this);
}
protected IngestFactory getIngestFactory() {
return ComponentUtil.getIngestFactory();
}
// web/file