Skip to content

Commit

Permalink
Merge pull request #3718 from cisagov/quick-fix
Browse files Browse the repository at this point in the history
Remove Unused References
  • Loading branch information
randywoods authored Jan 31, 2024
2 parents bf6371e + 95859f1 commit 02e18e0
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
using CSETWebCore.Business.Reports;
using CSETWebCore.DataLayer.Model;
using CSETWebCore.Interfaces.AdminTab;
using CSETWebCore.Interfaces.Crr;
using CSETWebCore.Interfaces.Helpers;
using CSETWebCore.Interfaces.Reports;
using CSETWebCore.Model.Maturity;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
using CSETWebCore.Business.Reports;
using CSETWebCore.DataLayer.Model;
using CSETWebCore.Interfaces.AdminTab;
using CSETWebCore.Interfaces.Crr;
using CSETWebCore.Interfaces.Helpers;
using CSETWebCore.Interfaces.Reports;
using CSETWebCore.Model.Maturity;
Expand Down
1 change: 0 additions & 1 deletion CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/Models/CmuVM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
using CSETWebCore.Business.Reports;
using CSETWebCore.Helpers;
using CSETWebCore.Interfaces.Cmu;
using CSETWebCore.Interfaces.Crr;
using CSETWebCore.Model.Assessment;
using CSETWebCore.Model.Cmu;
using CSETWebCore.Model.Edm;
Expand Down
6 changes: 3 additions & 3 deletions CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/Models/CrrVM.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
//
////////////////////////////////
using CSETWebCore.Business.Reports;
using CSETWebCore.Interfaces.Crr;
using CSETWebCore.Interfaces.Cmu;
using CSETWebCore.Model.Assessment;
using CSETWebCore.Model.Cmu;
using CSETWebCore.Model.Edm;
Expand All @@ -19,7 +19,7 @@ public class CrrVM
{
public CrrVM(AssessmentDetail assessmentDetails,
string criticalService,
ICrrScoringHelper crrScores,
ICmuScoringHelper crrScores,
MaturityBasicReportData reportData)
{
AssessmentDetails = assessmentDetails;
Expand All @@ -34,7 +34,7 @@ public CrrVM(AssessmentDetail assessmentDetails,

public List<EdmScoreParent> ParentScores { get; set; }

public ICrrScoringHelper CRRScores { get; set; }
public ICmuScoringHelper CRRScores { get; set; }

public object Structure { get; set; }

Expand Down
1 change: 0 additions & 1 deletion CSETWebApi/CSETWeb_Api/CSETWeb_ApiCore/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@
using Microsoft.OpenApi.Models;
using System.IO;
using System.Linq;
using CSETWebCore.Interfaces.Crr;
using Newtonsoft.Json;
using Microsoft.AspNetCore.Rewrite;
using CSETWebCore.Interfaces.Analytics;
Expand Down

0 comments on commit 02e18e0

Please sign in to comment.