From 9e566e90a9ec14439ff0cb2877435c1f5651ce88 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 14 Aug 2017 11:08:05 -0400 Subject: [PATCH] cleanup unused vars --- docker/docker-compose.yml | 6 ------ .../Implementations/RelayPushNotificationService.cs | 1 - .../Implementations/RelayPushRegistrationService.cs | 3 --- 3 files changed, 10 deletions(-) diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 9507929726..17cd05ad0b 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -5,8 +5,6 @@ services: image: microsoft/mssql-server-linux container_name: mssql restart: always - env_file: - - mssql.env ports: - '1433:1433' @@ -24,14 +22,10 @@ services: image: bitwarden/api container_name: api restart: always - env_file: - - global.env identity: image: bitwarden/identity container_name: identity - env_file: - - global.env nginx: image: bitwarden/nginx diff --git a/src/Core/Services/Implementations/RelayPushNotificationService.cs b/src/Core/Services/Implementations/RelayPushNotificationService.cs index 0a4c94bda4..d08503bf68 100644 --- a/src/Core/Services/Implementations/RelayPushNotificationService.cs +++ b/src/Core/Services/Implementations/RelayPushNotificationService.cs @@ -11,7 +11,6 @@ namespace Bit.Core.Services { public class RelayPushNotificationService : BaseRelayPushNotificationService, IPushNotificationService { - private readonly HttpClient _client; private readonly IHttpContextAccessor _httpContextAccessor; public RelayPushNotificationService( diff --git a/src/Core/Services/Implementations/RelayPushRegistrationService.cs b/src/Core/Services/Implementations/RelayPushRegistrationService.cs index 2ef33ec9f7..04d0bcb7ba 100644 --- a/src/Core/Services/Implementations/RelayPushRegistrationService.cs +++ b/src/Core/Services/Implementations/RelayPushRegistrationService.cs @@ -10,9 +10,6 @@ namespace Bit.Core.Services { public class RelayPushRegistrationService : BaseRelayPushNotificationService, IPushRegistrationService { - private dynamic _decodedToken; - private DateTime? _nextAuthAttempt = null; - public RelayPushRegistrationService(GlobalSettings globalSettings) : base(globalSettings) { }