Skip to content

Commit 923aa07

Browse files
avoid co-variant array conversion in ObjectViewSchema (#4552)
Co-authored-by: Rockford Lhotka <[email protected]>
1 parent 3e6a9cd commit 923aa07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Csla.Web/Design/ObjectViewSchema.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public IDataSourceViewSchema[] GetChildren()
6161
public IDataSourceFieldSchema[] GetFields()
6262
{
6363
ITypeResolutionService typeService = null;
64-
List<ObjectFieldInfo> result = new List<ObjectFieldInfo>();
64+
var result = new List<IDataSourceFieldSchema>();
6565

6666
if (_designer != null)
6767
{

0 commit comments

Comments
 (0)