Skip to content

Commit 9b15f6a

Browse files
authored
Merge pull request #3328 from windows-toolkit/marcpe/release_build_sample_app_issue
simple fix for Release build 'warnings as errors' failure
2 parents b31c819 + 0c1c155 commit 9b15f6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Microsoft.Toolkit.Uwp.SampleApp/SamplePages/AdaptiveGridView/AdaptiveGridViewPage.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ private void OnNumberSliderValueChanged(object sender, RangeBaseValueChangedEven
5858
{
5959
for (var i = currentCount; i > newCount; i--)
6060
{
61-
_boundPhotos.Remove(_originalPhotos[i-1]);
61+
_boundPhotos.Remove(_originalPhotos[i - 1]);
6262
}
6363
}
6464
}

0 commit comments

Comments
 (0)