Skip to content

Commit 5187f73

Browse files
committed
NHibernate.Test/Hql/Ast/User.cs: Remove use of persistent non-generic list.
1 parent f44f84b commit 5187f73

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/NHibernate.Test/Hql/Ast/User.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Collections;
1+
using System.Collections.Generic;
22

33
namespace NHibernate.Test.Hql.Ast
44
{
@@ -7,7 +7,7 @@ public class User
77
private long id;
88
private string userName;
99
private Human human;
10-
private IList permissions;
10+
private IList<string> permissions;
1111

1212
public virtual long Id
1313
{
@@ -27,7 +27,7 @@ public virtual Human Human
2727
set { human = value; }
2828
}
2929

30-
public virtual IList Permissions
30+
public virtual IList<string> Permissions
3131
{
3232
get { return permissions; }
3333
set { permissions = value; }

0 commit comments

Comments
 (0)