Subversion Repository Public Repository

litesoft

Diff Revisions 136 vs 151 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/forms/client/components/impls/input/FormTimestampPicker.java

Diff revisions: vs.
  @@ -41,8 +41,7 @@
41 41 @Override
42 42 protected Object parseNotEmptyTextFieldToInternalForm( String pText, Object pLastValidInternalFormValue )
43 43 {
44 - UtilDateAdaptor zInadequatePartsSource =
45 - (pLastValidInternalFormValue instanceof SimpleTimestamp) ? ((SimpleTimestamp) pLastValidInternalFormValue).getUtilDateAdaptor() : null;
44 + UtilDateAdaptor zInadequatePartsSource = (pLastValidInternalFormValue instanceof SimpleTimestamp) ? ((SimpleTimestamp) pLastValidInternalFormValue).getUtilDateAdaptor() : null;
46 45 return TemporalParser.YMD.parseTimestamp( pText, getPicker().getTimeFields(), zInadequatePartsSource );
47 46 }
48 47