Skip to content

Commit 08d8b78

Browse files
authored
Fix FromTimeZone GX function, the parameter was't been used (#119)
_ No funciona el FromTimeZone desde Offline Android Issue 76960
1 parent 563cfeb commit 08d8b78

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

android/src/main/java/com/genexus/GXutil.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,10 +345,9 @@ public static Date DateTimeToUTC(Date value)
345345
return CommonUtil.DateTimeToUTC(value, TimeZone.getDefault());
346346
}
347347

348-
349348
public static Date DateTimeToUTC(Date value, TimeZone tz)
350349
{
351-
return CommonUtil.DateTimeToUTC(value, TimeZone.getDefault());
350+
return CommonUtil.DateTimeToUTC(value, tz);
352351
}
353352

354353
public static Date DateTimeFromUTC(Date value)

0 commit comments

Comments
 (0)