Skip to content

Commit

Permalink
fix: sonarqube issue remove unused variable in authconfig (#585)
Browse files Browse the repository at this point in the history
fix: sonarqube- remove unused variable in authconfig
  • Loading branch information
sudipnhs authored Jan 17, 2025
1 parent e290db3 commit 488dbc5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
using DataServices.Core;
using DataServices.Database;

AccessRule isTrue = i => true;
AccessRule isFalse = i => false;
AuthenticationConfiguration authenticationConfiguration = new AuthenticationConfiguration(isFalse, isFalse, isTrue, isTrue, isTrue);

var host = new HostBuilder()
.ConfigureFunctionsWorkerDefaults()
.AddDataServicesHandler<DataServicesContext>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
using DataServices.Core;
using DataServices.Database;

AccessRule isTrue = i => true;
AccessRule isFalse = i => false;
AuthenticationConfiguration authenticationConfiguration = new AuthenticationConfiguration(isFalse, isFalse, isTrue, isTrue, isTrue);

var host = new HostBuilder()
.ConfigureFunctionsWorkerDefaults()
.AddDataServicesHandler<DataServicesContext>()
Expand Down

0 comments on commit 488dbc5

Please sign in to comment.