Skip to content

Commit

Permalink
Remove unnecessary base classes of GXList<T> added by mistake (List<L…
Browse files Browse the repository at this point in the history
…> extends all of them).

Make initializeOutParms private.
  • Loading branch information
claudiamurialdo committed Apr 19, 2022
1 parent 8175aa4 commit 8b2874e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ internal interface IGXAssigned
bool IsAssigned { get; set; }
}

public class GXBaseList<T> : List<T>, IGXAssigned, ICollection<T>, IEnumerable<T>, IEnumerable, IReadOnlyCollection<T>, IReadOnlyList<T>, ICollection, IList
public class GXBaseList<T> : List<T>, IGXAssigned
{
public GXBaseList()
{
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/dotnetframework/GxClasses/Middleware/GXHttp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ private Array GetArrayFieldValue(FieldInfo fieldInfo, object value)

return null;
}
public void initializeOutParms() {
private void initializeOutParms() {
DynAjaxEventContext.Clear();
foreach (JObject parm in DynAjaxEventContext.outParmsMetadata) {
string parmName = (string)parm["av"];
Expand Down

0 comments on commit 8b2874e

Please sign in to comment.