Skip to content
Snippets Groups Projects
Commit 8fc1258d authored by juanf's avatar juanf
Browse files

SSDM-3026 : Default constructor for date.

SVN: 35906
parent dd75d4f0
No related branches found
No related tags found
No related merge requests found
......@@ -27,6 +27,11 @@ public class DateEqualToValue extends AbstractDateValue
private static final long serialVersionUID = 1L;
DateEqualToValue()
{
super(null);
}
DateEqualToValue(String value)
{
super(value);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment