diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2022-07-04 11:33:29 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2022-07-04 11:33:29 +0300 |
commit | dca3481e9a91e1c9d5b86e1508b0a2993088e759 (patch) | |
tree | 208550ad4a4e541248a87583552e3beaa0713790 /src/AddIn/AddIn.cs | |
parent | 10e6a108f974b3e2541ec322f99e60ec5ab7d9f7 (diff) |
Remove Store Functions
Diffstat (limited to 'src/AddIn/AddIn.cs')
-rw-r--r-- | src/AddIn/AddIn.cs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/AddIn/AddIn.cs b/src/AddIn/AddIn.cs index 035e50f..1606624 100644 --- a/src/AddIn/AddIn.cs +++ b/src/AddIn/AddIn.cs @@ -9,14 +9,10 @@ namespace RehauSku { class AddIn : IExcelAddIn { - public static HttpClient httpClient; - public static MemoryCache memoryCache; public static Application Excel; public void AutoOpen() { - httpClient = new HttpClient(); - memoryCache = new MemoryCache("RehauSku"); Excel = (Application)ExcelDnaUtil.Application; RegisterFunctions(); IntelliSenseServer.Install(); @@ -29,7 +25,6 @@ namespace RehauSku IntelliSenseServer.Uninstall(); RegistryUtil.Uninitialize(); EventsUtil.Uninitialize(); - memoryCache.Dispose(); } void RegisterFunctions() |