Skip to content

Commit bdcda4b

Browse files
committed
remove debugging output
1 parent 9f2dd54 commit bdcda4b

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/main/java/com/xero/api/CustomDateDeserializer.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public CustomDateDeserializer(Class<?> vc) {
3030
public LocalDate deserialize(JsonParser jsonparser, DeserializationContext context)
3131
throws IOException, JsonProcessingException {
3232
String date = jsonparser.getText();
33-
System.out.println(date);
3433
LocalDate formattedDate;
3534
Pattern datePatt = Pattern.compile("^/Date\\((\\d+)([+-]\\d+)?\\)/$");
3635
Pattern datePattNeg = Pattern.compile("^/Date\\(-(\\d+)([+-]\\d+)?\\)/$");

0 commit comments

Comments
 (0)