Skip to content

Commit 9c03b88

Browse files
committed
Use explicit IEnumerable.
1 parent ccc87b6 commit 9c03b88

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ReClass.NET/Forms/EnumSelectionForm.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System;
2+
using System.Collections.Generic;
23
using System.Diagnostics.Contracts;
34
using System.Linq;
45
using System.Windows.Forms;
@@ -95,7 +96,7 @@ private void removeEnumIconButton_Click(object sender, EventArgs e)
9596

9697
private void ShowFilteredEnums()
9798
{
98-
var enums = project.Enums;
99+
IEnumerable<EnumDescription> enums = project.Enums;
99100

100101
if (!string.IsNullOrEmpty(filterNameTextBox.Text))
101102
{

0 commit comments

Comments
 (0)