aboutsummaryrefslogtreecommitdiff
path: root/src/AddIn/AddIn.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/AddIn/AddIn.cs')
-rw-r--r--src/AddIn/AddIn.cs5
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()