Skip to content

Commit 2cd8dd1

Browse files
author
Alejandro Panizza Carve
committed
- fix datetime format values for REST API
1 parent 15aa854 commit 2cd8dd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/src/main/java/com/genexus/internet/GXRestAPIClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ public class GXRestAPIClient {
5454
public enum DateFormat {
5555

5656
DATE_FMT(1, "yyyy-MM-dd"),
57-
DATETIME_FMT(3, "yyyy-MM-dd'T'HH:mm:ss"),
58-
DATETIME_FMT_MS(4, "yyyy-MM-dd'T'HH:mm:ss.SSS");
57+
DATETIME_FMT(2, "yyyy-MM-dd'T'HH:mm:ss"),
58+
DATETIME_FMT_MS(3, "yyyy-MM-dd'T'HH:mm:ss.SSS");
5959

6060
private final int fmtId;
6161
private final String fmtString;

0 commit comments

Comments
 (0)