remove print
parent
9edb886ce7
commit
4db2b32b4c
|
|
@ -17,7 +17,6 @@ public class DateConverter {
|
||||||
|
|
||||||
public LocalDate convertDateTime(String timestamp) throws ValidationError {
|
public LocalDate convertDateTime(String timestamp) throws ValidationError {
|
||||||
try {
|
try {
|
||||||
System.out.println(timestamp);
|
|
||||||
LocalDate date = LocalDate.parse(timestamp, DateTimeFormatter.ofPattern(DATEFORMAT));
|
LocalDate date = LocalDate.parse(timestamp, DateTimeFormatter.ofPattern(DATEFORMAT));
|
||||||
return date;
|
return date;
|
||||||
} catch (DateTimeParseException e) {
|
} catch (DateTimeParseException e) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue