DateField formatPattern should not be static string, but static variable
------------------------------------------------------------------------
Key: CLK-610
URL: https://issues.apache.org/jira/browse/CLK-610
Project: Click
Issue Type: Improvement
Reporter: Andrey Rybin
DateField constructors contain this code:
super(...);
...
setFormatPattern("dd MMM yyyy");
(yes, same code 3 times ;-)
I suggest to replace it with this:
public static String defaultFormatPattern = "dd MMM yyyy";
super(...);
...
setFormatPattern(defaultFormatPattern);
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.