Skip to content

Commit

Permalink
chore: Remove unused checkup
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed Nov 27, 2023
1 parent d6e7d00 commit 97f417f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 93 deletions.
5 changes: 1 addition & 4 deletions UnoCheck/Checkups/DotNetSdkCheckupContributor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@ public override IEnumerable<Checkup> Contribute(Manifest.Manifest manifest, Shar

if (sdk.Workloads?.Any() ?? false)
{
if (NuGetVersion.Parse(sdkVersion) >= Manifest.DotNetSdk.Version6Preview7)
yield return new DotNetWorkloadsCheckup(sharedState, sdkVersion, workloads, pkgSrcs);
else
yield return new DotNetWorkloadsCheckupLegacy(sharedState, sdkVersion, workloads, pkgSrcs);
yield return new DotNetWorkloadsCheckup(sharedState, sdkVersion, workloads, pkgSrcs);
}
}
}
Expand Down
89 changes: 0 additions & 89 deletions UnoCheck/Checkups/DotNetWorkloadsCheckupLegacy.cs

This file was deleted.

0 comments on commit 97f417f

Please sign in to comment.