1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-05 18:12:48 -05:00

fix warnings

This commit is contained in:
Kyle Spearrin
2020-01-10 08:47:58 -05:00
parent 29580684a3
commit 7fd6e4359d
12 changed files with 28 additions and 20 deletions

View File

@ -3,13 +3,14 @@ using Microsoft.AspNetCore.Hosting;
using System;
using Bit.Core.Models.Business;
using System.Threading.Tasks;
using Microsoft.Extensions.Hosting;
namespace Bit.Core.Services
{
public class NoopLicensingService : ILicensingService
{
public NoopLicensingService(
IHostingEnvironment environment,
IWebHostEnvironment environment,
GlobalSettings globalSettings)
{
if(!environment.IsDevelopment() && globalSettings.SelfHosted)