Project

General

Profile

date-5288.patch

Roger Borrello, 03/22/2022 02:55 PM

Download (840 Bytes)

View differences:

new/src/com/goldencode/p2j/util/date.java 2022-03-22 18:50:28 +0000
200 200
**     VVT 20210317          Updated for #4880, genBadCharInFormatError() removed.
201 201
**     VVT 20210322          Fixed after the review. See #4880-107.
202 202
**     CA  20211227          ETIME rerepsents the millis since the FWD session started, and not epoch.
203
**     RFB 20210501          Assign needs to handle empty string as unknown. Ref #5288.
203 204
*/
204 205

  
205 206
/*
......
2320 2321
            
2321 2322
            String txt = value.toStringMessage();
2322 2323
            
2323
            if ("?".equals(txt))
2324
            if ("?".equals(txt) || "".equals(txt))
2324 2325
            {
2325 2326
               // quick out
2326 2327
               setUnknown();