This commit is contained in:
2024-05-16 20:39:11 -04:00
parent e7fe33e0e7
commit b8a508fead

View File

@@ -10,7 +10,7 @@ using MarketData.Utils;
namespace TradeBlotter.Cache
{
public class PriceCache:IDisposable
public class PriceCache : IDisposable
{
private Dictionary<String,Price> priceCache=new Dictionary<String,Price>();
private Object thisLock=new Object();