Skip to content

Commit

Permalink
eclipse-rdf4jGH-5058: additional parser code (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
barthanssens committed Jul 9, 2024
1 parent 98f0f99 commit ee04b0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public Value parse(String cell) {
s = defaultValue;
}
if (formatter != null) {
s = DateTimeFormatter.BASIC_ISO_DATE.format(formatter.parse(s));
s = DateTimeFormatter.ISO_DATE.format(formatter.parse(s));
}
return Values.literal(s, dataType);
}
Expand Down

0 comments on commit ee04b0d

Please sign in to comment.