| Summary: | different format for default timestamp output, declarations are equivalent. | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Ben Margolis <margolis> |
| Component: | EDT | Assignee: | Project Inbox <edt.javagen-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | minor | ||
| Priority: | P3 | CC: | jeffdouglas, jinfahua |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
fixed *** Bug 362150 has been marked as a duplicate of this bug. *** verified with a build from 8 November. |
input: result Timestamp("yyyyMMddHHmm"); result02 Timestamp? = new Timestamp("yyyyMMddHHmm"); sysLib.writeStdOut("result: " + result as String + "\nresult02: " + result02 as string); output: result: 2011-10-26 16:27:14 result02: 2011-10-26 16:27 Java: Calendar result = ETimestamp.defaultValue(); Calendar result02; result02 = ETimestamp.defaultValue(ETimestamp.YEAR_CODE, ETimestamp.MINUTE_CODE); SysLib.writeStdout((EString.plus((((("result: ") + EString.asString(result))) + "\nresult02: "), EString.asString(result02))));