SPRINT-12: fixed style issue and broken tests

This commit is contained in:
Tim Chamberlain
2022-09-23 16:21:38 -05:00
parent 5efd2da636
commit ce48933cbd
2 changed files with 48 additions and 24 deletions

View File

@ -70,26 +70,6 @@ public class QValueFormatter
/*******************************************************************************
**
*******************************************************************************/
public String formatDate(LocalDate date)
{
return (dateFormatter.format(date));
}
/*******************************************************************************
**
*******************************************************************************/
public String formatDateTime(LocalDateTime dateTime)
{
return (dateTimeFormatter.format(dateTime));
}
/*******************************************************************************
**
*******************************************************************************/
@ -149,6 +129,26 @@ public class QValueFormatter
/*******************************************************************************
**
*******************************************************************************/
public String formatDate(LocalDate date)
{
return (dateFormatter.format(date));
}
/*******************************************************************************
**
*******************************************************************************/
public String formatDateTime(LocalDateTime dateTime)
{
return (dateTimeFormatter.format(dateTime));
}
/*******************************************************************************
** Make a string from a table's recordLabelFormat and fields, for a given record.
*******************************************************************************/