Skip to content

Commit 3d3be53

Browse files
author
Alejandro Panizza Carve
committed
- Fix format and messages
1 parent b4cd4a4 commit 3d3be53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dotnet/src/dotnetframework/GxClasses/Helpers/GXRestAPIClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ public Guid GetBodyGuid(string varName)
378378

379379
public Decimal GetBodyNum(string varName)
380380
{
381-
try
381+
try
382382
{
383383
return Decimal.Parse(GetJsonStr(varName), NumberStyles.Float, CultureInfo.InvariantCulture);
384384
}
@@ -390,7 +390,7 @@ public Decimal GetBodyNum(string varName)
390390
{
391391
Console.WriteLine("Failed to parse number due to overflow exception.");
392392
}
393-
// Return a empty value in case of an exception
393+
// Return an empty value in case of an exception
394394
return 0m;
395395
}
396396
public long GetBodyLong(string varName)

0 commit comments

Comments
 (0)