We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca1913e commit 5fc4972Copy full SHA for 5fc4972
common/src/main/java/com/genexus/CommonUtil.java
@@ -1105,6 +1105,9 @@ else if ( (day == 31) && ((newMth == 3) || (newMth == 5) || (newMth == 8) || (ne
1105
//Debe ignorar los caracteres invalidos
1106
public static long lval(String text)
1107
{
1108
+ if (text == null)
1109
+ return 0;
1110
+
1111
text = text.trim();
1112
try
1113
@@ -1154,6 +1157,9 @@ public static double val(String text)
1154
1157
1155
1158
public static double val(String text, String sDSep)
1156
1159
1160
1161
1162
1163
1164
1165
0 commit comments