1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-22 12:15:36 +01:00

cleanup unused vars

This commit is contained in:
Kyle Spearrin 2017-08-14 11:08:05 -04:00
parent 8f84f8b488
commit 9e566e90a9
3 changed files with 0 additions and 10 deletions

View File

@ -5,8 +5,6 @@ services:
image: microsoft/mssql-server-linux image: microsoft/mssql-server-linux
container_name: mssql container_name: mssql
restart: always restart: always
env_file:
- mssql.env
ports: ports:
- '1433:1433' - '1433:1433'
@ -24,14 +22,10 @@ services:
image: bitwarden/api image: bitwarden/api
container_name: api container_name: api
restart: always restart: always
env_file:
- global.env
identity: identity:
image: bitwarden/identity image: bitwarden/identity
container_name: identity container_name: identity
env_file:
- global.env
nginx: nginx:
image: bitwarden/nginx image: bitwarden/nginx

View File

@ -11,7 +11,6 @@ namespace Bit.Core.Services
{ {
public class RelayPushNotificationService : BaseRelayPushNotificationService, IPushNotificationService public class RelayPushNotificationService : BaseRelayPushNotificationService, IPushNotificationService
{ {
private readonly HttpClient _client;
private readonly IHttpContextAccessor _httpContextAccessor; private readonly IHttpContextAccessor _httpContextAccessor;
public RelayPushNotificationService( public RelayPushNotificationService(

View File

@ -10,9 +10,6 @@ namespace Bit.Core.Services
{ {
public class RelayPushRegistrationService : BaseRelayPushNotificationService, IPushRegistrationService public class RelayPushRegistrationService : BaseRelayPushNotificationService, IPushRegistrationService
{ {
private dynamic _decodedToken;
private DateTime? _nextAuthAttempt = null;
public RelayPushRegistrationService(GlobalSettings globalSettings) public RelayPushRegistrationService(GlobalSettings globalSettings)
: base(globalSettings) : base(globalSettings)
{ } { }