Skip to content

Commit

Permalink
Fix this last brace
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Feb 23, 2024
1 parent 696d607 commit 55a78b8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Xamarin.Android.Build.Tasks/Tasks/GetAssetPacks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ public override bool RunTask ()
{
Dictionary<string, ITaskItem> assetPacks = new Dictionary<string, ITaskItem> ();
Dictionary<string, List<string>> files = new Dictionary<string, List<string>> ();
foreach (var asset in Assets)
{
foreach (var asset in Assets) {
var assetPack = asset.GetMetadata ("AssetPack");
if (string.IsNullOrEmpty (assetPack) || string.Compare (assetPack, "base", StringComparison.OrdinalIgnoreCase) == 0)
continue;
Expand Down

0 comments on commit 55a78b8

Please sign in to comment.