优化border

This commit is contained in:
monitor1394
2023-12-16 22:31:34 +08:00
parent e83eeabf9c
commit 2431a001b1
6 changed files with 8 additions and 20 deletions

View File

@@ -2,7 +2,7 @@ using System.Collections.Generic;
namespace XCharts.Runtime
{
internal static class ListPool<T>
public static class ListPool<T>
{
private static readonly ObjectPool<List<T>> s_ListPool = new ObjectPool<List<T>>(OnGet, OnClear);
static void OnGet(List<T> l)