fix issues/11723 PageHandlerAdapterFactory 集合容量不够大 (#11763)

This commit is contained in:
黄科铭 2024-02-22 14:59:49 +08:00 committed by GitHub
parent c2f8463e12
commit 4f279bf110
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,8 +47,8 @@ public class PageHandlerAdapterFactory {
}
private PageHandlerAdapterFactory() {
handlerAdapters = new ArrayList<>(2);
handlerAdapterMap = new HashMap<>(2);
handlerAdapters = new ArrayList<>(3);
handlerAdapterMap = new HashMap<>(3);
initHandlerAdapters();
}