Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public class BaseNameableObject extends BaseIdentifiableObject implements Nameab
/** Description of this object. */
protected String description;

/** Name to be displayed in data entry forms. */
protected String formName;

// -------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class DefaultCalendarService implements CalendarService {
private final Map<String, Calendar> calendarMap = Maps.newHashMap();

private static final List<DateFormat> DATE_FORMATS =
Lists.newArrayList(
List.of(
new DateFormat("yyyy-MM-dd", "yyyy-MM-dd", "yyyy-MM-dd", "yyyy-mm-dd"),
new DateFormat("dd-MM-yyyy", "dd-MM-yyyy", "dd-MM-yyyy", "dd-mm-yyyy"));

Expand Down
Loading