File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
dotnet/src/extensions/gam/src/DotNetFramework/GamUtils/Utils Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1- using System . Collections . Generic ;
21using System . Collections ;
2+ using System . Collections . Generic ;
3+ using GeneXus . Utils ;
34using Newtonsoft . Json ;
45using Newtonsoft . Json . Linq ;
5- using GeneXus . Utils ;
66
77namespace GamUtils . Utils
88{
@@ -55,8 +55,9 @@ private void ObjectToMap(string key, object value)
5555 {
5656 userMap [ key ] = null ;
5757 }
58- else if ( value is IDictionary || value is IList || value is bool || value is int ||
59- value is long || value is float || value is double || value is decimal )
58+ else if ( value is IDictionary || value is IList || value is bool || value is short ||
59+ value is int || value is long || value is float || value is double ||
60+ value is decimal )
6061 {
6162 userMap [ key ] = value ;
6263 }
You can’t perform that action at this time.
0 commit comments